9 lines
311 B
HTML
9 lines
311 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 }}">all tags</a>.</p>
|
|
|
|
{{ post_macros::list_posts(pages=term.pages)}}
|
|
{% endblock main_content %} |