From 015dde5eecb79b642e156201aa2f87e7a312edad Mon Sep 17 00:00:00 2001
From: Tom Teichler <tom.teichler@teckids.org>
Date: Sun, 15 Mar 2020 22:32:41 +0100
Subject: [PATCH] Re-add container

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

diff --git a/templates/archives.html b/templates/archives.html
index 2cd580e..c35dbe3 100644
--- a/templates/archives.html
+++ b/templates/archives.html
@@ -2,11 +2,14 @@
 
 {% block title %}{{ SITENAME }} — Archives{% endblock %}
 {% block template_content %}
-    <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 class="container">
+    <div class="col-sm-12">    
+        <h3>News</h3>
+        {% for article in articles %}
+             <h4><a href="{{ article.url }}">{{ article.title }}</a></h4>
+             <p>{{ article.date }} · <a href="{{ article.author.url }}">{{ article.author }}</a></p>
+             {{ article.summary }}
+         {% endfor %}
+    </div>
+</div>
 {% endblock %}
-- 
GitLab