diff options
author | Yaroslav <contact@yaroslavps.com> | 2020-10-02 02:09:59 +0300 |
---|---|---|
committer | Yaroslav <contact@yaroslavps.com> | 2020-10-02 02:09:59 +0300 |
commit | ec29bebbda2a278e78da1a0f91bd7a8e100d5dd7 (patch) | |
tree | 77d0d4e47ea085db02405530b6fe3885e7fd7c31 /templates/weblog_archive.html | |
parent | 358c7b06be5ac06de4cc10c85093ffac8044458a (diff) | |
download | yaroslavps.com-ec29bebbda2a278e78da1a0f91bd7a8e100d5dd7.tar.gz yaroslavps.com-ec29bebbda2a278e78da1a0f91bd7a8e100d5dd7.zip |
Style changes
Mainly changes to the color palette of the site, but also added a
background image and increased the maximum width of the main container.
Also added separate links for the RSS feeds of the weblog and recipe
book.
Diffstat (limited to 'templates/weblog_archive.html')
-rw-r--r-- | templates/weblog_archive.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/weblog_archive.html b/templates/weblog_archive.html index b06bdb2..cd507ba 100644 --- a/templates/weblog_archive.html +++ b/templates/weblog_archive.html @@ -9,7 +9,7 @@ Weblog archive - Yaroslav's weblog {% set section = get_section(path="weblog/_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> |