aboutsummaryrefslogtreecommitdiffstats
path: root/Just-Read/templates/category.html
diff options
context:
space:
mode:
Diffstat (limited to 'Just-Read/templates/category.html')
-rw-r--r--Just-Read/templates/category.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/Just-Read/templates/category.html b/Just-Read/templates/category.html
new file mode 100644
index 0000000..20cdc17
--- /dev/null
+++ b/Just-Read/templates/category.html
@@ -0,0 +1,17 @@
+{% extends "base.html" %}
+{% block title %}{{ category }} - {{ SITENAME }}{% endblock %}
+
+{% block content %}
+<div role="main" class="content clearfix">
+<div class="wrapper main">
+ <h2>Posts categorized under: {{ category }}</h2>
+
+ <ol class="archive">
+ {% for article in articles %}
+ <li class="clearfix"><a href="{{ SITEURL }}/{{ article.url }}"><time datetime="{{ article.date.isoformat() }}" pubdate>{{ article.locale_date }}</time> {{ article.title }}</a></li>
+ {% endfor %}
+ </ol>
+
+</div>
+</div>
+{% endblock %} \ No newline at end of file