summaryrefslogtreecommitdiffstats
path: root/content/templates/archive.md
diff options
context:
space:
mode:
Diffstat (limited to 'content/templates/archive.md')
-rw-r--r--content/templates/archive.md23
1 files changed, 23 insertions, 0 deletions
diff --git a/content/templates/archive.md b/content/templates/archive.md
new file mode 100644
index 0000000..467d12c
--- /dev/null
+++ b/content/templates/archive.md
@@ -0,0 +1,23 @@
++++
+title = "Archive"
+weight = 90
++++
+
+Zola doesn't have a built-in way to display an archive page (a page showing
+all post titles ordered by year). However, this can be accomplished directly in the templates:
+
+```jinja2
+{% for year, posts in section.pages | group_by(attribute="year") %}
+ <h2>{{ year }}</h2>
+
+ <ul>
+ {% for post in posts %}
+ <li><a href="{{ post.permalink }}">{{ post.title }}</a></li>
+ {% endfor %}
+ </ul>
+{% endfor %}
+```
+
+This snippet assumes that posts are sorted by date and that you want to display the archive
+in descending order. If you want to show articles in ascending order, add a `reverse` filter
+after `group_by`.