17 lines
434 B
HTML
17 lines
434 B
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block main_content %}
|
||
|
{% if section.extra.section_path -%}
|
||
|
{% set section = get_section(path=section.extra.section_path) %}
|
||
|
{% endif -%}
|
||
|
|
||
|
{{ post_macros::page_header(title=section.title) }}
|
||
|
|
||
|
{%- set tags = get_taxonomy(kind="tags") -%}
|
||
|
{%- set term = get_taxonomy_term(kind="tags", term="proclamation") -%}
|
||
|
|
||
|
{{ post_macros::list_posts(pages = term.pages) }}
|
||
|
|
||
|
{% endblock main_content %}
|
||
|
|