diff --git a/templates/archives.html b/templates/archives.html
index ead880cd150fb985a4efe9c1d7a89b2c294dfbe6..0af7d26de2e249a08f5a3f214214286e61f0fb10 100644
--- a/templates/archives.html
+++ b/templates/archives.html
@@ -3,5 +3,12 @@
 {% block title %}{{ SITENAME }} — Archives{% endblock %}
 <div class="col-md-12 col-sm-12">
     {% block content_title %}
+        <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 %}
 </div>