aboutsummaryrefslogtreecommitdiff
path: root/templates/categories.html
diff options
context:
space:
mode:
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 %}