1
0
Fork 0
forked from github/pelican
pelican-theme/templates/categories.html

14 lines
458 B
HTML
Raw Normal View History

{% extends "base.html" %}
2018-06-13 00:20:55 +00:00
2025-07-08 10:51:34 +02:00
{% block title %}Categories - {{ SITENAME|striptags }}{% endblock %}
2018-06-13 00:20:55 +00:00
{% block content %}
2024-12-19 09:56:25 +01:00
<div class="md:text-base lg:text-lg">
<h1 class="text-3xl md:text-5xl">Blog categories</h1>
<ul class="hyphens-auto">
{% for category, articles in categories|sort %}
<li><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a> ({{ articles|count }})</li>
{% endfor %}
</ul>
2024-12-19 09:56:25 +01:00
</div>
{% endblock %}