edgarluque.com/templates/taxonomy_single.html

31 lines
788 B
HTML
Raw Permalink Normal View History

2023-06-27 09:57:32 +00:00
{% extends "base.html" %}
2024-07-01 12:22:36 +00:00
{% block title %}Articles about {{ term.name }}{% endblock title %}
2023-06-27 09:57:32 +00:00
{% set rss_path = term.path ~ "atom.xml" %}
{% block rss %}
{% set rss_path = term.path ~ "atom.xml" %}
<link rel="alternate" type="application/atom+xml" title="RSS" href="{{ get_url(path=rss_path, trailing_slash=false) }}">
{% endblock rss %}
{% block content %}
2021-12-24 11:02:07 +00:00
<h1 class="capitalize">{{ term.name }} articles</h1>
<ul class="posts">
{% for page in term.pages %}
<li>
<span><time datetime="{{ page.date }}">{{ page.date }}</time>: </span>
<a href="{{ page.permalink }}" title="{{ page.description }}"
>{{ page.title }}</a
>
</li>
{% endfor %}
</ul>
2023-06-27 09:57:32 +00:00
<p><a href="{{ get_url(path=rss_path, trailing_slash=false) }}">RSS Feed</a></p>
2021-12-24 11:02:07 +00:00
{% endblock content %}