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:
<h2> </h2>
<ul>
<li><a href=" "> </a></li>
</ul>
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
.