diff options
author | Alan Pearce | 2024-05-28 23:23:33 +0200 |
---|---|---|
committer | Alan Pearce | 2024-05-28 23:23:33 +0200 |
commit | a70fb3f413a205390b45943007400d5d9a06a72b (patch) | |
tree | 2ca6b45c37ddd89054e46d523d5cd6e3c3c3c133 /templates/page.html | |
parent | fe37fcf3daa0eaafc1236050ac95b5d4ba21bcd2 (diff) | |
parent | 995c4f6eff9a601c75c39d40f945c8a70d710d95 (diff) | |
download | zola-bearblog-microformats2.tar.lz zola-bearblog-microformats2.tar.zst zola-bearblog-microformats2.zip |
Merge branch 'main' into microformats2 microformats2
Diffstat (limited to 'templates/page.html')
-rw-r--r-- | templates/page.html | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/templates/page.html b/templates/page.html index 89de955..2e2ef86 100644 --- a/templates/page.html +++ b/templates/page.html @@ -1,3 +1,4 @@ +{% import "macros.html" as macros %} {% extends "base.html" %} {% block title %}{{ page.title }} | {{ super() }}{% endblock %} @@ -15,6 +16,12 @@ </p> {%- endif %} {%- endif %} + {%- if config.extra.table_of_contents.show and not page.extra.hide_table_of_contents and page.toc %} + <details {%if config.extra.table_of_contents.visible_on_load %}open{% endif %}> + <summary>Table of Contents</summary> + {{ macros::table_of_contents(toc=page.toc, max_level=config.extra.table_of_contents.max_level) }} + </details> + {%- endif %} <main> {{ page.content | safe }} </main> @@ -23,7 +30,7 @@ {%- for name, taxon in page.taxonomies %} {{ name | capitalize }}: {%- for item in taxon %} - <a href="{{ get_taxonomy_url(kind=name, name=item) }}">#{{ item }}</a> + <a href="{{ get_taxonomy_url(kind=name, name=item, lang=lang) }}">#{{ item }}</a> {%- endfor %} {%- endfor %} {%- endif %} |