monospace/templates/tags.html
2022-08-04 09:41:15 -04:00

14 lines
253 B
HTML

{% extends "base.html" %}
{% block content %}
<div id="wrap">
<div id="container">
<div class="entry">
<ul>
{% for tag, articles in tags %}
<li><a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a></li>
{% endfor %}
</ul>
</div>
</div>
{% endblock %}