aboutsummaryrefslogtreecommitdiffstats
path: root/medio/templates/categories.html
diff options
context:
space:
mode:
Diffstat (limited to 'medio/templates/categories.html')
-rwxr-xr-xmedio/templates/categories.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/medio/templates/categories.html b/medio/templates/categories.html
new file mode 100755
index 0000000..2ec0eda
--- /dev/null
+++ b/medio/templates/categories.html
@@ -0,0 +1,28 @@
+{% extends "base.html" %}
+{% block content %}
+<div class="page-container archive-container">
+
+ <div class="article-header-container">
+ <div class="background-image-container">
+
+ {# title with big background image #}
+ <div class="background-image-small">
+ <div class="title-container">
+ <h1>Categories for {{ SITENAME }}</h1>
+ </div>
+ </div>
+ </div>
+ </div>
+
+ <div class="entry-content" style="min-height:100vh">
+
+ <ul>
+ {% for category, articles in categories %}
+ <li><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a></li>
+ {% endfor %}
+ </ul>
+
+ </div>
+
+</div>
+{% endblock %}