summaryrefslogtreecommitdiff
path: root/themes/elenq/templates/authors.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/authors.html
Template V1
Diffstat (limited to 'themes/elenq/templates/authors.html')
-rw-r--r--themes/elenq/templates/authors.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/themes/elenq/templates/authors.html b/themes/elenq/templates/authors.html
new file mode 100644
index 0000000..4914904
--- /dev/null
+++ b/themes/elenq/templates/authors.html
@@ -0,0 +1,13 @@
+{% extends "base.html" %}
+
+{% block title %}{{ SITENAME }} - Authors{% endblock %}
+
+{% block content %}
+ <h1>Authors on {{ SITENAME }}</h1>
+
+ <ul>
+ {%- for author, articles in authors|sort %}
+ <li><a href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a> ({{ articles|count }})</li>
+ {% endfor %}
+ </ul>
+{% endblock %}