blag/theme-fred/templates/tags.html

10 lines
183 B
HTML
Raw Normal View History

2016-08-03 02:36:43 -04:00
{% extends "base.html" %}
{% block content %}
<ul>
{% for tag, articles in tags %}
<li><a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a></li>
{% endfor %}
</ul>
{% endblock %}