blog/templates/home.html
Joe Ardent 8a6bb0bbed Tags and homepage working.
Posts tagged "proclamation" will be listed on the front page.
2023-01-08 15:55:40 -08:00

16 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 %}