duckquill/templates/taxonomy_single.html

36 lines
932 B
HTML
Raw Normal View History

2023-10-13 00:55:20 +00:00
{% extends "base.html" %}
{% block content %}
<h1>Posts with tag “{{ term.name }}”</h1>
<small>
<a class="link-page" href="{{ config.base_url }}/tags">See all tags</a>
<br />
{{ term.pages | length }} posts in total
</small>
<article>
{% for page in term.pages %}
<h2>
<a class="link-page" href="{{ page.permalink | safe }}">
{{ page.title }}
</a>
</h2>
<small>
<time datetime='{{ page.date | date(format='%+') }}' pubdate>
{{- page.date | date(format=config.extra.date_format) -}}
</time>
{%- if page.taxonomies %}
{%- for name, taxon in page.taxonomies %}
{%- for item in taxon %}
<a href="{{ get_taxonomy_url(kind=name, name=item) }}">
<i class="bi bi-tag-fill"></i>
2023-10-13 00:55:20 +00:00
{{ item }}
</a>&nbsp;
{%- endfor %}
{%- endfor %}
{%- endif %}
</small>
{% endfor %}
</article>
{% endblock content %}