alexdaniels.me/templates/front/category/index.html.twig

17 lines
459 B
Twig
Raw Normal View History

2026-06-03 17:18:50 -07:00
{% extends 'base.html.twig' %}
{% block title %}Categories | Alex Daniels{% endblock %}
{% block body %}
<section class="categories">
<h2>Categories</h2>
<ul>
{% for category in categories %}
<li>
<a href="/categories/{{category['urlSafeTitle']}}">{{category['title']}} ({{category['count']}})</a>
</li>
{% endfor %}
</ul>
</section>
{% endblock %}