From 3d3f10d8c20fea6e10cea9cc176e41d339756ae9 Mon Sep 17 00:00:00 2001 From: Dmytro Litvinov Date: Thu, 23 Feb 2017 17:36:45 +0200 Subject: [PATCH] Change name of variable to DISABLE_URL_HASH --- templates/base.html | 2 +- templates/index.html | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/base.html b/templates/base.html index b7d0dd6..6cd02ea 100644 --- a/templates/base.html +++ b/templates/base.html @@ -94,7 +94,7 @@ {% set PAGES_SORT_ATTRIBUTE = 'title' %} {%- endif %} {% for page in pages|sort(attribute=PAGES_SORT_ATTRIBUTE) %} -
  • {{ page.title }}
  • +
  • {{ page.title }}
  • {% endfor %} {% for name, link in LINKS %} diff --git a/templates/index.html b/templates/index.html index 39085b3..6b62711 100644 --- a/templates/index.html +++ b/templates/index.html @@ -15,7 +15,7 @@ {% for article in articles_page.object_list %}
    -

    {{ article.title }}

    +

    {{ article.title }}

    {{ _('Posted on %(when)s in %(category)s', when=article.locale_date, @@ -37,7 +37,7 @@ {% if summarise or article.metadata['summary'] or SUMMARY_MAX_LENGTH %} {{ article.summary }}
    - {{ _('Continue reading') }} + {{ _('Continue reading') }} {% else %} {{ article.content }} {% endif %}