8 lines
319 B
HTML
8 lines
319 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block main_content %}
|
|
{{ 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) -}}
|
|
{% endblock main_content %} |