diff options
author | Yaroslav de la Peña Smirnov <yps@yaroslavps.com> | 2020-10-11 19:32:49 +0300 |
---|---|---|
committer | Yaroslav de la Peña Smirnov <yps@yaroslavps.com> | 2020-10-11 19:32:49 +0300 |
commit | 1c4ab30eabede1ffea33e45b5e68a14201da40a7 (patch) | |
tree | ca50abcb8aef18ba0de1de79105ba7e20031b20c /templates/food_archive.html | |
parent | 0d2b6748111af656b1005783c2231cd270a64def (diff) | |
download | yaroslavps.com-1c4ab30eabede1ffea33e45b5e68a14201da40a7.tar.gz yaroslavps.com-1c4ab30eabede1ffea33e45b5e68a14201da40a7.zip |
Smol style changes
* Corrected recipes' archive headings
* Improved rendering of footnotes
* Stylistic changes to landing page: smaller font, bigger horizontal
padding
* Background attachment no longer fixed
Diffstat (limited to 'templates/food_archive.html')
-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> |