51d4b6bd6a
* Update installation.md * Update cli-usage.md * Update installation.md * Update directory-structure.md * Update configuration.md * Update overview.md * Update section.md * Update page.md * Update section.md * Update configuration.md * Update page.md * Update section.md * Update page.md * Update shortcodes.md * Update linking.md * Update table-of-contents.md * Update syntax-highlighting.md * Update taxonomies.md * Update search.md * Update sass.md * Update index.md * Update multilingual.md * Update overview.md * Update pages-sections.md * Update pagination.md * Update taxonomies.md * Update rss.md * Update sitemap.md * Update robots.md * Update 404.md * Update archive.md * Update overview.md * Update installing-and-using-themes.md * Update creating-a-theme.md * Update netlify.md * Update github-pages.md * Update gitlab-pages.md * Update index.md * Update page.md * Update section.md * Updates.
24 lines
668 B
Markdown
24 lines
668 B
Markdown
+++
|
|
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`.
|