forked from github/pelican
14 lines
429 B
HTML
14 lines
429 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}{{ SITENAME|striptags }} - Categories{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="md:text-base lg:text-lg">
|
|
<h2>Blog categories</h2>
|
|
<ul class="hyphens-auto">
|
|
{% for category, articles in categories|sort %}
|
|
<li><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a> ({{ articles|count }})</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
{% endblock %}
|