diff --git a/pg-py/themes/basic/archive.html b/pg-py/themes/basic/archive.html
new file mode 100644
index 0000000..6e2ed52
--- /dev/null
+++ b/pg-py/themes/basic/archive.html
@@ -0,0 +1,13 @@
+ <main class="list-page">
+ <h1>Archive</h1>
+ <p>This is the archive of all posts. It is an optional page, configurable from pa.py</p>
+
+ <ul class="post-list">
+ {% for year, posts in years %}
+ <h2>{{ year }}</h2>
+ {% for post in posts %}
+ <li>{date|format:%d %b %Y} - <a href="{post.url}">{post.title}</a></li>
+ {% endfor %}
+ {% endfor %}
+ </ul>
+ </main>