aboutsummaryrefslogtreecommitdiff
path: root/templates/categories.html
diff options
context:
space:
mode:
authorKatharina Sabel <sabel.katharina@gmail.com>2016-12-09 23:19:50 +0100
committerKatharina Sabel <sabel.katharina@gmail.com>2016-12-09 23:19:50 +0100
commit7ed624b108a683d6eb5e37da5c5da00aa5fd030f (patch)
tree0997aaf5569a14449820fcb796e3283bfdf3c22a /templates/categories.html
parent355de7343314c6f7990927424ed9b59a89aaef69 (diff)
A lot of changes that are very destructive to the theme. But I needed and wanted them. Might clean up the template tree to be a bit less...hacky. But this works for now
Diffstat (limited to 'templates/categories.html')
-rwxr-xr-xtemplates/categories.html30
1 files changed, 17 insertions, 13 deletions
diff --git a/templates/categories.html b/templates/categories.html
index 0c24668..a5a97a8 100755
--- a/templates/categories.html
+++ b/templates/categories.html
@@ -26,18 +26,22 @@
{% endblock header %}
{% block content %}
- <div class="archive-container">
- <div class="container content archive">
- {% for category, articles in categories %}
- <h2><a href="{{ SITEURL }}/{{ category.url }}">{{ category|capitalize }}</a></h2>
- <dl class="dl-horizontal">
- {% for article in articles %}
- <dt>{{ article.locale_date}}</dt>
- <dd><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></dd>
- {% endfor %}
- </dl>
- {% endfor %}
- </div>
- </div>
+
+<div class="col-lg-9 content archive">
+
+ <h1>{{ category|capitalize }}</h1>
+ <dl class="dl-horizontal">
+
+ {% for category, articles in categories %}
+ <h2><a href="{{ SITEURL }}/{{ category.url }}">{{ category|capitalize }}</a></h2>
+ <dl class="dl-horizontal">
+ {% for article in articles %}
+ <dt>{{ article.locale_date}}</dt>
+ <dd><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></dd>
+ {% endfor %}
+ </dl>
+ {% endfor %}
+ </dl>
+</div>
{% endblock content %}