From 2ae831f15604a33ab74e212e41741c9f2589a72e Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Tue, 28 May 2024 23:32:50 +0200 Subject: Use translations for table of contents --- config.toml | 2 ++ templates/page.html | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/config.toml b/config.toml index 764b3d8..365282e 100644 --- a/config.toml +++ b/config.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 diff --git a/templates/page.html b/templates/page.html index 2e2ef86..cb33ab5 100644 --- a/templates/page.html +++ b/templates/page.html @@ -18,7 +18,7 @@ {%- endif %} {%- if config.extra.table_of_contents.show and not page.extra.hide_table_of_contents and page.toc %}
- Table of Contents + {{ trans(key="table_of_contents", lang=lang) }} {{ macros::table_of_contents(toc=page.toc, max_level=config.extra.table_of_contents.max_level) }}
{%- endif %} -- cgit 1.4.1