Skip to content
Snippets Groups Projects
Verified Commit 015dde5e authored by Tom Teichler's avatar Tom Teichler :beers:
Browse files

Re-add container

parent d5e10bb9
No related branches found
No related tags found
No related merge requests found
...@@ -2,11 +2,14 @@ ...@@ -2,11 +2,14 @@
{% block title %}{{ SITENAME }} — Archives{% endblock %} {% block title %}{{ SITENAME }} — Archives{% endblock %}
{% block template_content %} {% block template_content %}
<h3>News</h3> <div class="container">
{% for article in articles %} <div class="col-sm-12">
<h4><a href="{{ article.url }}">{{ article.title }}</a></h4> <h3>News</h3>
{{ article.date }} · <a href="{{ article.author.url }}">{{ article.author }}</a> {% for article in articles %}
{{ article.summary }} <h4><a href="{{ article.url }}">{{ article.title }}</a></h4>
<p><a href="{{ article.url }}">More info…</a></p> <p>{{ article.date }} · <a href="{{ article.author.url }}">{{ article.author }}</a></p>
{% endfor %} {{ article.summary }}
{% endfor %}
</div>
</div>
{% endblock %} {% endblock %}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment