aboutsummaryrefslogtreecommitdiffstats
path: root/zurb-F5-basic/templates/tags.html
blob: 7aec93a43a8d3477f274eb062986c82435d047c8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% extends "base.html" %}
{% block content %}

<ul class="circle">
    {% for tag, articles in tags %}
	<li><a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a></li>
	<ul class="square">
	{% for article in articles %}
	<li><a href="{{ SITEURL }}/{{ article.url }}"><small>{{ article.title }}</small></li>
	{% endfor %}
	</ul>
    {% endfor %}
</ul>

{% endblock %}