diff --git a/templates/archives.html b/templates/archives.html index 2cd580ef33deab63b16c31ea99891294f4b48a1c..c35dbe32a2b4ee8cf2f6a468ce3f0dd46bd14bcd 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 %}