diff options
author | Wolfgang Müller | 2024-10-05 12:51:57 +0200 |
---|---|---|
committer | Wolfgang Müller | 2024-10-05 14:25:35 +0200 |
commit | eb373a706fb2b3a74f685d619f6c29bf163a4889 (patch) | |
tree | 7002f1bc728fd78c5e2c8f2c696341d804ef2e94 /templates/page.html | |
parent | 2176cc7f6cf8c9e56dbc187361e5e3a6a5f8d96e (diff) | |
download | zunzuncito-eb373a706fb2b3a74f685d619f6c29bf163a4889.tar.gz |
Use gutter to mark related posts
Now that we can put nicely-aligned content at the side we can use the
space to mark the "Related posts" header in a nicer way.
Diffstat (limited to '')
-rw-r--r-- | templates/page.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/templates/page.html b/templates/page.html index 95f2d62..32d6e4c 100644 --- a/templates/page.html +++ b/templates/page.html @@ -3,7 +3,8 @@ {%- block content %} {{ macros::render_post(post=page, class="single") }} {%- if "related" in page.extra and page.extra.related | length > 0 -%} -<h3 class="related">Related posts</h3> +<aside class="gutter"><span>§</span></aside> +<h2 id="related">Related posts</h2> {%- for ref in page.extra.related %} {%- set page = get_page(path=ref ~ "/index.md") -%} {{ macros::render_post(post=page, class="related") }} |