aboutsummaryrefslogtreecommitdiffstats
path: root/youtube/templates/base.html
diff options
context:
space:
mode:
authorJames Taylor <user234683@users.noreply.github.com>2019-07-21 22:50:57 -0700
committerJames Taylor <user234683@users.noreply.github.com>2019-07-21 22:50:57 -0700
commit74cf3b2135661ae17b4e390c91182c673645cad7 (patch)
treed833aa5058f50c157de961585bbae4e8f33bc75f /youtube/templates/base.html
parentc5827a3bb1a6b2eb6cfbc7d9104bd73514311246 (diff)
downloadyt-local-74cf3b2135661ae17b4e390c91182c673645cad7.tar.lz
yt-local-74cf3b2135661ae17b4e390c91182c673645cad7.tar.xz
yt-local-74cf3b2135661ae17b4e390c91182c673645cad7.zip
Use variable to set title on base template instead of block
Diffstat (limited to 'youtube/templates/base.html')
-rw-r--r--youtube/templates/base.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube/templates/base.html b/youtube/templates/base.html
index eafd369..3dda55d 100644
--- a/youtube/templates/base.html
+++ b/youtube/templates/base.html
@@ -2,7 +2,7 @@
<html>
<head>
<meta charset="utf-8">
- <title>{% block page_title %}{{ title }}{% endblock %}</title>
+ <title>{{ page_title }}</title>
<link href="/youtube.com/static/shared.css" type="text/css" rel="stylesheet">
<link href="/youtube.com/static/comments.css" type="text/css" rel="stylesheet">
<link href="/youtube.com/static/favicon.ico" type="image/x-icon" rel="icon">