diff --git a/alchemy/templates/archives.html b/alchemy/templates/archives.html index 61b9669..8ace156 100644 --- a/alchemy/templates/archives.html +++ b/alchemy/templates/archives.html @@ -1,18 +1,18 @@ {% extends "base.html" %} {% block title %} -Archives {{ super() }} + Archives {{ super() }} {% endblock %} {% block page_header %} -Archives + Archives {% endblock %} {% block content %} -
- {% for article in dates %} -
{{ article.locale_date }}
-
{{ article.title }}
- {% endfor %} -
+
+ {% for article in dates %} +
{{ article.locale_date }}
+
{{ article.title }}
+ {% endfor %} +
{% endblock %} diff --git a/alchemy/templates/article.html b/alchemy/templates/article.html index faf764e..43b221d 100644 --- a/alchemy/templates/article.html +++ b/alchemy/templates/article.html @@ -1,51 +1,51 @@ {% extends "base.html" %} {% block head %} -{{ super() }} - + {{ super() }} + {% endblock %} {% block title %} -{{ article.title|striptags }} {{ super() }} + {{ article.title|striptags }} {{ super() }} {% endblock %} {% block page_header %} -{{ article.title }} + {{ article.title }} {% endblock %} {% block content %} -
-
- -
-
- {{ article.content }} -
-
-{% include 'include/comments.html' %} +
+
+ +
+
+ {{ article.content }} +
+
+ {% include 'include/comments.html' %} {% endblock %} diff --git a/alchemy/templates/author.html b/alchemy/templates/author.html index 31df9f3..549ff73 100644 --- a/alchemy/templates/author.html +++ b/alchemy/templates/author.html @@ -1,9 +1,9 @@ {% extends "index.html" %} {% block title %} -{{ author }} Articles | {{ SITENAME }} + {{ author }} Articles | {{ SITENAME }} {% endblock %} {% block page_header %} -{{ author }} Articles + {{ author }} Articles {% endblock %} diff --git a/alchemy/templates/authors.html b/alchemy/templates/authors.html index cfa6dc5..c55f5a8 100644 --- a/alchemy/templates/authors.html +++ b/alchemy/templates/authors.html @@ -1,20 +1,20 @@ {% extends "base.html" %} {% block title %} -Authors {{ super() }} + Authors {{ super() }} {% endblock %} {% block page_header %} -Authors + Authors {% endblock %} {% block content %} - - {% for author, articles in authors|sort %} - - - - - {% endfor %} -
{{ author }}{{ articles|count }}
+ + {% for author, articles in authors|sort %} + + + + + {% endfor %} +
{{ author }}{{ articles|count }}
{% endblock %} diff --git a/alchemy/templates/base.html b/alchemy/templates/base.html index 978d079..a9de6eb 100644 --- a/alchemy/templates/base.html +++ b/alchemy/templates/base.html @@ -11,11 +11,11 @@ {% if RFG_FAVICONS %} - - - - - + + + + + {% endif %} diff --git a/alchemy/templates/categories.html b/alchemy/templates/categories.html index cd33423..79e162f 100644 --- a/alchemy/templates/categories.html +++ b/alchemy/templates/categories.html @@ -1,20 +1,20 @@ {% extends "base.html" %} {% block title %} -Categories {{ super() }} + Categories {{ super() }} {% endblock %} {% block page_header %} -Categories + Categories {% endblock %} {% block content %} - - {% for category, articles in categories|sort %} - - - - - {% endfor %} -
{{ category }}{{ articles|count }}
+ + {% for category, articles in categories|sort %} + + + + + {% endfor %} +
{{ category }}{{ articles|count }}
{% endblock %} diff --git a/alchemy/templates/category.html b/alchemy/templates/category.html index 5147ed7..0e78d6c 100644 --- a/alchemy/templates/category.html +++ b/alchemy/templates/category.html @@ -1,9 +1,9 @@ {% extends "index.html" %} {% block title %} -{{ category }} Articles | {{ SITENAME }} + {{ category }} Articles | {{ SITENAME }} {% endblock %} {% block page_header %} -{{ category }} Articles + {{ category }} Articles {% endblock %} diff --git a/alchemy/templates/include/analytics.html b/alchemy/templates/include/analytics.html index c41baa5..a8a97e8 100644 --- a/alchemy/templates/include/analytics.html +++ b/alchemy/templates/include/analytics.html @@ -1,51 +1,53 @@ {% if GOOGLE_ANALYTICS %} - + {% endif %} + {% if GAUGES %} - + {% endif %} + {% if PIWIK_URL and PIWIK_SITE_ID %} - + {% endif %} diff --git a/alchemy/templates/include/comments.html b/alchemy/templates/include/comments.html index 7bb3c6b..0f58df6 100644 --- a/alchemy/templates/include/comments.html +++ b/alchemy/templates/include/comments.html @@ -1,20 +1,20 @@ {% if DISQUS_SITENAME %} -
-
- - +
+
+ + {% endif %} diff --git a/alchemy/templates/include/pagination.html b/alchemy/templates/include/pagination.html index 28b78b5..cd8ad45 100644 --- a/alchemy/templates/include/pagination.html +++ b/alchemy/templates/include/pagination.html @@ -1,24 +1,24 @@ {% if articles_paginator.num_pages > 1 %} -
- +
+ {% endif %} diff --git a/alchemy/templates/index.html b/alchemy/templates/index.html index 0845a46..f526922 100644 --- a/alchemy/templates/index.html +++ b/alchemy/templates/index.html @@ -1,53 +1,55 @@ {% extends "base.html" %} {% block head %} -{{ super() }} -{% if DESCRIPTION %} - -{% endif %} + {{ super() }} + {% if DESCRIPTION %} + + {% endif %} {% endblock %} {% block title %} -{{ SITENAME }} | {{ SITESUBTITLE }} + {{ SITENAME }} | {{ SITESUBTITLE }} {% endblock %} {% block page_header %} -Articles + Articles {% endblock %} {% block content %} -{% for article in articles_page.object_list %} -
-
- -
-
-

{{ article.title }}

-
- {{ article.summary|striptags }} -
-
-
-{% if not loop.last %} -
-{% endif %} -{% endfor %} -{% include 'include/pagination.html' %} + {% for article in articles_page.object_list %} +
+
+ +
+
+

+ {{ article.title }} +

+
+ {{ article.summary|striptags }} +
+
+
+ {% if not loop.last %} +
+ {% endif %} + {% endfor %} + {% include 'include/pagination.html' %} {% endblock %} diff --git a/alchemy/templates/page.html b/alchemy/templates/page.html index f3a588d..f88b03c 100644 --- a/alchemy/templates/page.html +++ b/alchemy/templates/page.html @@ -1,22 +1,22 @@ {% extends "base.html" %} {% block head %} -{{ super() }} - + {{ super() }} + {% endblock %} {% block title %} -{{ page.title|striptags }} {{ super() }} + {{ page.title|striptags }} {{ super() }} {% endblock %} {% block page_header %} -{{ page.title }} + {{ page.title }} {% endblock %} {% block content %} -
-
- {{ page.content }} -
-
+
+
+ {{ page.content }} +
+
{% endblock %} diff --git a/alchemy/templates/period_archives.html b/alchemy/templates/period_archives.html index 7c81fae..01e2172 100644 --- a/alchemy/templates/period_archives.html +++ b/alchemy/templates/period_archives.html @@ -1,18 +1,18 @@ {% extends "base.html" %} {% block title %} -Archives for {{ period | reverse | join(' ') }} {{ super() }} + Archives for {{ period | reverse | join(' ') }} {{ super() }} {% endblock %} {% block page_header %} -Archives for {{ period | reverse | join(' ') }} + Archives for {{ period | reverse | join(' ') }} {% endblock %} {% block content %} -
- {% for article in dates %} -
{{ article.locale_date }}
-
{{ article.title }}
- {% endfor %} -
+
+ {% for article in dates %} +
{{ article.locale_date }}
+
{{ article.title }}
+ {% endfor %} +
{% endblock %} diff --git a/alchemy/templates/sitemap.html b/alchemy/templates/sitemap.html index c6b4736..89d2839 100644 --- a/alchemy/templates/sitemap.html +++ b/alchemy/templates/sitemap.html @@ -1,27 +1,27 @@ {% for article in articles %} - - {{ SITEURL }}/{{ article.url }} - 0.8 - - {% for translation in article.translations %} - - {{ SITEURL }}/{{ translation.url }} - 0.8 - - {% endfor %} + + {{ SITEURL }}/{{ article.url }} + 0.8 + + {% for translation in article.translations %} + + {{ SITEURL }}/{{ translation.url }} + 0.8 + + {% endfor %} {% endfor %} {% for page in pages %} - - {{ SITEURL }}/{{ page.url }} - 1.0 - - {% for translation in page.translations %} - - {{ SITEURL }}/{{ translation.url }} - 1.0 - - {% endfor %} + + {{ SITEURL }}/{{ page.url }} + 1.0 + + {% for translation in page.translations %} + + {{ SITEURL }}/{{ translation.url }} + 1.0 + + {% endfor %} {% endfor %} diff --git a/alchemy/templates/tag.html b/alchemy/templates/tag.html index d5ac1e8..9a79c98 100644 --- a/alchemy/templates/tag.html +++ b/alchemy/templates/tag.html @@ -1,9 +1,9 @@ {% extends "index.html" %} {% block title %} -#{{ tag }} Articles | {{ SITENAME }} + #{{ tag }} Articles | {{ SITENAME }} {% endblock %} {% block page_header %} -#{{ tag }} Articles + #{{ tag }} Articles {% endblock %} diff --git a/alchemy/templates/tags.html b/alchemy/templates/tags.html index 8d2818c..c443fec 100644 --- a/alchemy/templates/tags.html +++ b/alchemy/templates/tags.html @@ -1,20 +1,20 @@ {% extends "base.html" %} {% block title %} -Tags {{ super() }} + Tags {{ super() }} {% endblock %} {% block page_header %} -Tags + Tags {% endblock %} {% block content %} - - {% for tag, articles in tags|sort %} - - - - - {% endfor %} -
#{{ tag }}{{ articles|count }}
+ + {% for tag, articles in tags|sort %} + + + + + {% endfor %} +
#{{ tag }}{{ articles|count }}
{% endblock %}