mirror of
https://github.com/tchartron/blow
synced 2024-12-18 08:43:07 +00:00
18 lines
533 B
HTML
18 lines
533 B
HTML
{% extends "layout.html" %}
|
|
|
|
{% block content %}
|
|
<div class="flex items-center flex-col md:mt-40">
|
|
<h1 class="text-xl text-bold">
|
|
Categories
|
|
</h1>
|
|
<p class="text-bold">{{ terms | length }} categories in total</p>
|
|
|
|
{% for category in terms %}
|
|
<a href="{{ get_taxonomy_url(kind='categories', name=category.name) }}" class="mr-4">
|
|
<span class="icon">
|
|
<i class="fas fa-cube"></i>
|
|
</span>
|
|
<span>{{category.name}} <sup>{{ category.pages | length }}</sup></span>
|
|
</a>
|
|
{% endfor %}
|
|
{% endblock content %}
|