1
0
mirror of https://github.com/avinal/avinal.github.io.git synced 2026-07-04 15:50:08 +05:30
Files
avinal.github.io/themes/alchemy/templates/categories.html
T
2020-09-29 11:19:46 +05:30

20 lines
420 B
HTML

{% extends "base.html" %}
{% block title %}
Categories {{ super() }}
{% endblock %}
{% block page_header %}
Categories
{% endblock %}
{% block content %}
<table class="table table-bordered table-striped">
{% for category, articles in categories|sort %}
<tr>
<td><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a></td>
<td>{{ articles|count }}</td>
</tr>
{% endfor %}
</table>
{% endblock %}