diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/food_archive.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/food_archive.html b/templates/food_archive.html index bd709e2..b298815 100644 --- a/templates/food_archive.html +++ b/templates/food_archive.html @@ -9,7 +9,7 @@ Recipe archive - Yaroslav's recipe book {% set section = get_section(path="food/_index.md") %} <div class="post-container"> {% for year, posts in section.pages | group_by(attribute="year") %} - <h3>{{ year }}</h3> + <h2>{{ year }}</h2> <ul> {% for post in posts %} <li><span class="publish-date">{{ post.date | date }}</span> - <a href="{{ post.permalink }}">{{ post.title }}</a></li> |