diff options
author | James Taylor <user234683@users.noreply.github.com> | 2019-06-21 21:41:41 -0700 |
---|---|---|
committer | James Taylor <user234683@users.noreply.github.com> | 2019-06-21 21:41:41 -0700 |
commit | 1156b0998758ee803c7e8ae0cc2beb5181c232a3 (patch) | |
tree | 781c8d34c0de049327fd2d3f9085dc9877748acc /youtube/templates/base.html | |
parent | e33bae2e50799e3617432f294cf36581404a5114 (diff) | |
download | yt-local-1156b0998758ee803c7e8ae0cc2beb5181c232a3.tar.lz yt-local-1156b0998758ee803c7e8ae0cc2beb5181c232a3.tar.xz yt-local-1156b0998758ee803c7e8ae0cc2beb5181c232a3.zip |
Refactor search page
Diffstat (limited to 'youtube/templates/base.html')
-rw-r--r-- | youtube/templates/base.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/youtube/templates/base.html b/youtube/templates/base.html index e98f972..eafd369 100644 --- a/youtube/templates/base.html +++ b/youtube/templates/base.html @@ -2,13 +2,14 @@ <html> <head> <meta charset="utf-8"> - <title>{% block page_title %}{% endblock %}</title> + <title>{% block page_title %}{{ title }}{% endblock %}</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"> <link title="Youtube local" href="/youtube.com/opensearch.xml" rel="search" type="application/opensearchdescription+xml"> <style type="text/css"> {% block style %} +{{ style }} {% endblock %} </style> </head> @@ -105,6 +106,7 @@ </header> <main> {% block main %} +{{ main }} {% endblock %} </main> </body> |