monospace/templates/categories.html

14 lines
311 B
HTML
Raw Normal View History

2019-03-06 17:01:54 -05:00
{% extends "base.html" %}
{% block content %}
2021-07-27 20:49:53 -04:00
<div id="wrap" style="width:100%">
<div id="container" style="width:70%">
<div class="entry">
2019-03-06 17:01:54 -05:00
<ul>
{% for category, articles in categories %}
<li><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a></li>
{% endfor %}
</ul>
2021-07-27 20:49:53 -04:00
</div>
</div>
2019-03-06 17:01:54 -05:00
{% endblock %}