summaryrefslogtreecommitdiff
path: root/themes/elenq/templates/tags.html
diff options
context:
space:
mode:
Diffstat (limited to 'themes/elenq/templates/tags.html')
-rw-r--r--themes/elenq/templates/tags.html15
1 files changed, 9 insertions, 6 deletions
diff --git a/themes/elenq/templates/tags.html b/themes/elenq/templates/tags.html
index b5d1482..393a983 100644
--- a/themes/elenq/templates/tags.html
+++ b/themes/elenq/templates/tags.html
@@ -1,10 +1,13 @@
{% extends "base.html" %}
-
-{% block title %}{{ SITENAME }} - Tags{% endblock %}
-
+{% block title %}Tags — {{ SITENAME }}{% endblock %}
{% block content %}
- <h1>Tags for {{ SITENAME }}</h1>
- {%- for tag, articles in tags|sort %}
- <li><a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a> ({{ articles|count }})</li>
+<section id="content">
+ <h2>Tags</h2>
+
+ <p>
+ {% for tag, articles in tags|sort %}
+ <a href="{{ SITEURL }}/{{ tag.url }}">{{ tag.name }}</a> ({{ articles|count }})<br>
{% endfor %}
+ </p>
+</section>
{% endblock %}