1
0
Fork 0
forked from github/pelican

feat: this is going live now

This commit is contained in:
Oliver Ladner 2024-12-19 09:56:25 +01:00
commit 06cac4589c
410 changed files with 4684 additions and 44715 deletions

14
templates/categories.html Normal file
View file

@ -0,0 +1,14 @@
{% extends "base.html" %}
{% block title %}{{ SITENAME|striptags }} - Categories{% endblock %}
{% block content %}
<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>
</div>
{% endblock %}