all repos — zola-bearblog @ a70fb3f413a205390b45943007400d5d9a06a72b

Port of bear blog theme to zola

Merge branch 'main' into microformats2

Alan Pearce
commit

a70fb3f413a205390b45943007400d5d9a06a72b

parent

fe37fcf3daa0eaafc1236050ac95b5d4ba21bcd2

1 file changed, 8 insertions(+), 1 deletion(-)

changed files
M templates/page.htmltemplates/page.html
@@ -1,3 +1,4 @@
+{% import "macros.html" as macros %} {% extends "base.html" %} {% block title %}{{ page.title }} | {{ super() }}{% endblock %}
@@ -15,6 +16,12 @@ </i>
</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 @@ {%- if page.taxonomies %}
{%- 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 %}