From 6ab8b2906a212a6e7ef0f2a92ca8844dd998e7f5 Mon Sep 17 00:00:00 2001 From: Taiju Muto Date: Thu, 3 Jul 2014 03:10:18 +0900 Subject: Display article/page title. --- built-texts/templates/base.html | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'built-texts/templates/base.html') diff --git a/built-texts/templates/base.html b/built-texts/templates/base.html index c081927..444568f 100644 --- a/built-texts/templates/base.html +++ b/built-texts/templates/base.html @@ -1,8 +1,10 @@ + {% block head %} + - {% block windowtitle %}{{ SITENAME }}{% endblock %} + {% block title %}{{ SITENAME }}{% endblock title %} @@ -17,6 +19,8 @@ + + {% endblock head %} -- cgit From 41a3756df7c7353be7fbc2d1aba40b8cb537fed9 Mon Sep 17 00:00:00 2001 From: Taiju Muto Date: Thu, 3 Jul 2014 03:11:25 +0900 Subject: Set default language. --- built-texts/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'built-texts/templates/base.html') diff --git a/built-texts/templates/base.html b/built-texts/templates/base.html index 444568f..e352a5e 100644 --- a/built-texts/templates/base.html +++ b/built-texts/templates/base.html @@ -1,5 +1,5 @@ - + {% block head %} -- cgit From 8e4b1d196941aeeb882bada4082b330da78fff19 Mon Sep 17 00:00:00 2001 From: Taiju Muto Date: Thu, 3 Jul 2014 22:56:53 +0900 Subject: Use {{FEED_DOMAIN}} variable. --- built-texts/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'built-texts/templates/base.html') diff --git a/built-texts/templates/base.html b/built-texts/templates/base.html index e352a5e..b7c3dfb 100644 --- a/built-texts/templates/base.html +++ b/built-texts/templates/base.html @@ -109,7 +109,7 @@ Tags {% if FEED_RSS %} -
  • +
  • RSS Feed
  • {% endif %} -- cgit From 84bc59ad9b5d3369bd1314995b435d1ef0a0f507 Mon Sep 17 00:00:00 2001 From: Taiju Muto Date: Thu, 3 Jul 2014 22:57:43 +0900 Subject: Put Atom feed instead of empty link. --- built-texts/templates/base.html | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'built-texts/templates/base.html') diff --git a/built-texts/templates/base.html b/built-texts/templates/base.html index b7c3dfb..c15ed67 100644 --- a/built-texts/templates/base.html +++ b/built-texts/templates/base.html @@ -113,9 +113,11 @@ RSS Feed {% endif %} -
  • - + {% if FEED_ATOM %} +
  • + Atom Feed
  • + {% endif %} -- cgit From 5562ef70c93c6b342e16ab44d9e28f2c2082427b Mon Sep 17 00:00:00 2001 From: Taiju Muto Date: Thu, 3 Jul 2014 22:58:31 +0900 Subject: Put feed links in head tag. --- built-texts/templates/base.html | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'built-texts/templates/base.html') diff --git a/built-texts/templates/base.html b/built-texts/templates/base.html index c15ed67..397cda3 100644 --- a/built-texts/templates/base.html +++ b/built-texts/templates/base.html @@ -13,6 +13,13 @@ + {% if FEED_RSS %} + + {% endif %} + {% if FEED_ATOM %} + + {% endif %} + -- cgit