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

14 lines
403 B
HTML
Raw Normal View History

{% extends "base.html" %}
2018-06-13 00:20:55 +00:00
{% block title %}{{ SITENAME|striptags }} - Categories{% 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">
<h2>Categories</h2>
<ul>
{% 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 %}