mat.services/templates/taxonomy_single.html

8 lines
319 B
HTML
Raw Normal View History

2022-08-13 04:47:49 +00:00
{% extends "base.html" %}
{% block main_content %}
2022-10-21 06:26:16 +00:00
{{ post_macros::page_header(title="posts tagged with " ~ term.name) }}
{%- set parent = get_taxonomy(kind=taxonomy.name) %}
<p>go to <a href="{{ parent.permalink | safe }}">all tags</a>.</p>
{{ post_macros::list_posts(pages=term.pages) -}}
2022-08-13 04:47:49 +00:00
{% endblock main_content %}