summaryrefslogtreecommitdiff
path: root/themes/elenq/templates/tags.html
diff options
context:
space:
mode:
authorEkaitz Zárraga <ekaitz.zarraga@protonmail.com>2018-04-06 12:01:09 +0200
committerEkaitz Zárraga <ekaitz.zarraga@protonmail.com>2018-04-06 12:01:09 +0200
commitfc476ec89f95a8011ae132dfda05d05ff4642d7a (patch)
tree0e807e86757f9555479354a6e26b24cf08370912 /themes/elenq/templates/tags.html
Template V1
Diffstat (limited to 'themes/elenq/templates/tags.html')
-rw-r--r--themes/elenq/templates/tags.html10
1 files changed, 10 insertions, 0 deletions
diff --git a/themes/elenq/templates/tags.html b/themes/elenq/templates/tags.html
new file mode 100644
index 0000000..b5d1482
--- /dev/null
+++ b/themes/elenq/templates/tags.html
@@ -0,0 +1,10 @@
+{% extends "base.html" %}
+
+{% block title %}{{ SITENAME }} - Tags{% 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>
+ {% endfor %}
+{% endblock %}