1
0
mirror of https://github.com/arsenetar/pelican-red.git synced 2024-12-04 22:59:01 +00:00
pelican-red/templates/tags.html
Andrew Senetar a584c9b380 Update all main template files
This is a major update to template files as now most have actual content.
2013-07-14 00:58:23 -04:00

11 lines
255 B
HTML

{% extends 'base.html' %}
{% block title %}{{ super() }} - Tags{% endblock %}
{% block content_title %}Tags{% endblock %}
{% block content %}
<ul class="inline-list">
{% for tag in tags %}
<li>{{ tag.name }}</li>
{% endfor %}
</ul>
{% endblock %}