From d5e10bb98fe4625de6af4260ce9cab7df80f3377 Mon Sep 17 00:00:00 2001
From: Tom Teichler <tom.teichler@teckids.org>
Date: Sun, 15 Mar 2020 22:26:36 +0100
Subject: [PATCH] Redesign archives page

---
 templates/archives.html | 16 +++++++---------
 1 file changed, 7 insertions(+), 9 deletions(-)

diff --git a/templates/archives.html b/templates/archives.html
index b27951e..2cd580e 100644
--- a/templates/archives.html
+++ b/templates/archives.html
@@ -2,13 +2,11 @@
 
 {% block title %}{{ SITENAME }} — Archives{% endblock %}
 {% block template_content %}
-    <div class="col-md-12 col-sm-12">
-        <h3>News</h3>
-             {% for article in articles %}
-                 <h4><a href="{{ article.url }}">{{ article.title }}</a></h4>
-                 {{ article.date }} · <a href="{{ article.author.url }}">{{ article.author }}</a>
-                 {{ article.summary }}
-                 <p><a href="{{ article.url }}">More info…</a></p>
-             {% endfor %}
-    </div>
+    <h3>News</h3>
+    {% for article in articles %}
+         <h4><a href="{{ article.url }}">{{ article.title }}</a></h4>
+         {{ article.date }} · <a href="{{ article.author.url }}">{{ article.author }}</a>
+         {{ article.summary }}
+         <p><a href="{{ article.url }}">More info…</a></p>
+     {% endfor %}
 {% endblock %}
-- 
GitLab