summaryrefslogtreecommitdiff
path: root/themes/elenq/templates/tags.html
diff options
context:
space:
mode:
authorEkaitz Zárraga <ekaitz.zarraga@protonmail.com>2019-03-28 13:09:33 +0100
committerEkaitz Zárraga <ekaitz.zarraga@protonmail.com>2019-03-28 13:09:33 +0100
commit040fa162f87ccf23e9b2f363326bce84c57d70f8 (patch)
treeff44f7fa8e6f7fa5451bea7b9d1200adf1a85d49 /themes/elenq/templates/tags.html
parent92ddea0bf4e8f939bdce69d65dd15069e774e624 (diff)
add themes page to theme
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 &mdash; {{ 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 %}