diff --git a/templates/tags/list.html b/templates/tags/list.html index 16ffdf1..fa57fdf 100644 --- a/templates/tags/list.html +++ b/templates/tags/list.html @@ -14,7 +14,7 @@
{% for tag in terms %} - {{ tag.name }} ({{ tag.pages | length }})
+ {{ tag.name | safe }} ({{ tag.pages | length }})
{% endfor %}
{% endblock main %} diff --git a/templates/tags/single.html b/templates/tags/single.html index 788c72f..8e49ce7 100644 --- a/templates/tags/single.html +++ b/templates/tags/single.html @@ -7,14 +7,14 @@ {% endblock head %} {% block main %} -

{{term.name | safe}}

+

{{ term.name | safe }}

{% for page in term.pages %}
-

{{page.title}}

- {{page.date}} -

{{page.description|safe}}

+

{{ page.title | safe }}

+ {{ page.date }} +

{{ page.description | safe }}

{% endfor %}