This commit is contained in:
Edgar 2024-07-01 14:22:36 +02:00
parent a2f9b1e47d
commit 2b2d114ee0
No known key found for this signature in database
GPG key ID: 70ADAE8F35904387
2 changed files with 9 additions and 2 deletions

View file

@ -1,4 +1,8 @@
{% extends "base.html" %} {% block content %}
{% extends "base.html" %}
{% block title %}{{ taxonomy.name|capitalize }}{% endblock title %}
{% block content %}
<h1 class="capitalize">{{ taxonomy.name }}</h1>
<ul class="categories">
@ -6,7 +10,7 @@
<li>
<a href="{{ term.permalink }}" title="{{ term.name }}" class="capitalize"
>{{ term.name }}</a
>
> <span style="color: rgb(150, 150, 150);">({{ term.page_count }})</span>
</li>
{% endfor %}
</ul>

View file

@ -1,5 +1,8 @@
{% extends "base.html" %}
{% block title %}Articles about {{ term.name }}{% endblock title %}
{% set rss_path = term.path ~ "atom.xml" %}
{% block rss %}