all repos — zola-bearblog @ 2ae831f15604a33ab74e212e41741c9f2589a72e

Port of bear blog theme to zola

Use translations for table of contents <summary>

Alan Pearce
commit

2ae831f15604a33ab74e212e41741c9f2589a72e

parent

0ecc7caa75cffd4b864ef006725ed3b8dcbb29a1

2 files changed, 3 insertions(+), 1 deletion(-)

jump to
M config.tomlconfig.toml
@@ -20,6 +20,7 @@ no_posts = "No posts yet"
remove_filter = "Remove filter" filtering_for = "Filtering for" made_with = "Made with" +table_of_contents = "Table of contents" [languages.de] title = "Zola ʕ•ᴥ•ʔ Bear Blog"
@@ -35,6 +36,7 @@ no_posts = "Keine Einträge"
remove_filter = "Filter entfernen" filtering_for = "Filtern nach" made_with = "Erstellt mit" +table_of_contents = "Inhaltsverzeichnis" [markdown] # Whether to do syntax highlighting
M templates/page.htmltemplates/page.html
@@ -18,7 +18,7 @@ {%- 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> + <summary>{{ trans(key="table_of_contents", lang=lang) }}</summary> {{ macros::table_of_contents(toc=page.toc, max_level=config.extra.table_of_contents.max_level) }} </details> {%- endif %}