diff options
Diffstat (limited to 'templates/taxonomy_single.html')
-rw-r--r-- | templates/taxonomy_single.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/templates/taxonomy_single.html b/templates/taxonomy_single.html index 9c9cebb..ea58c99 100644 --- a/templates/taxonomy_single.html +++ b/templates/taxonomy_single.html @@ -1,6 +1,6 @@ {% extends "base.html" %} -{% block main %} +{%- block main -%} <main> {%- if term %} <h3 class="filter">Filtering for "{{ term.name }}"</h3> @@ -9,7 +9,7 @@ </small> {%- endif %} <ul class="blog-posts"> - {% for page in term.pages %} + {%- for page in term.pages %} <li> <span> <i> @@ -20,11 +20,11 @@ </span> <a href="{{ page.permalink }}">{{ page.title }}</a> </li> - {% else %} + {%- else %} <li> {{ trans(key="no_posts", lang=lang) }} </li> - {% endfor %} + {%- endfor %} </ul> </main> -{% endblock %} +{%- endblock -%} |