aboutsummaryrefslogtreecommitdiffstats
path: root/templates/base.html
diff options
context:
space:
mode:
authorWeitian LI <liweitianux@gmail.com>2014-05-18 15:36:09 +0800
committerWeitian LI <liweitianux@gmail.com>2014-05-18 15:36:09 +0800
commitce61677ea556749f810954ccd6704eaff70c75e7 (patch)
treee6aa5ee0244b5fe8a0cbc55ca97f8e7dc03d75b6 /templates/base.html
parente4bfdf788035ab68e024df5522a308acfde8d386 (diff)
downloaddjango-skaschool-ce61677ea556749f810954ccd6704eaff70c75e7.tar.bz2
* updated 'robots.txt'
* updated template 'base.html' to include 'metainfo.html' and 'sitetitle.txt' * updated navbar.html main button text
Diffstat (limited to 'templates/base.html')
-rw-r--r--templates/base.html9
1 files changed, 8 insertions, 1 deletions
diff --git a/templates/base.html b/templates/base.html
index 81766a4..c080043 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -14,7 +14,10 @@ Weitian LI <liweitianux@gmail.com>
{# title #}
{% block bootstrap3_title %}
- {% block title %}(title){% endblock %}
+ {% block title %}
+ {% block pagetitle %}(pagetitle){% endblock %} |
+ {% block sitetitle %}{% include 'sitetitle.txt' %}{% endblock %}
+ {% endblock %}
{% endblock %}
{# bootstrap3_extra_head #}
@@ -29,6 +32,10 @@ Weitian LI <liweitianux@gmail.com>
{% block favicon %}
{% include 'favicon.html' %}
{% endblock %}
+ {# add meta information #}
+ {% block metainfo %}
+ {% include 'metainfo.html' %}
+ {% endblock %}
{% endblock %}
{# body #}