diff options
author | Alan Pearce | 2024-02-18 13:58:34 +0100 |
---|---|---|
committer | Alan Pearce | 2024-02-18 20:40:21 +0100 |
commit | a6000685cfcbb4253f634b44637b599cec96d5bc (patch) | |
tree | 14bbf91452f561d8a5b084985a409efa4e5238b0 /templates/section.html | |
parent | 5a936b5c413b541c5523da6b4ebdc46f996f7360 (diff) | |
download | zola-bearblog-a6000685cfcbb4253f634b44637b599cec96d5bc.tar.lz zola-bearblog-a6000685cfcbb4253f634b44637b599cec96d5bc.tar.zst zola-bearblog-a6000685cfcbb4253f634b44637b599cec96d5bc.zip |
Create basic German version of website
Diffstat (limited to 'templates/section.html')
-rw-r--r-- | templates/section.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/section.html b/templates/section.html index f3c218a..9560719 100644 --- a/templates/section.html +++ b/templates/section.html @@ -3,9 +3,9 @@ {% block main %} <main> {%- if taxonomy.term %} - <h3 class="filter">Filtering for "{{ section.title }}"</h3> + <h3 class="filter">{{ trans(key="filtering_for",lang=lang)}} "{{ section.title }}"</h3> <small> - <a href="{{ get_url(path="@/blog/_index.md", lang=lang) }}">Remove filter</a> + <a href="{{ get_url(path="@/blog/_index.md", lang=lang) }}">{{ trans(key="remove_filter", lang=lang) }}</a> </small> {%- endif %} <ul class="blog-posts"> @@ -22,13 +22,13 @@ </li> {% else %} <li> - No posts yet + {{ trans(key="no_posts", lang=lang) }} </li> {% endfor %} </ul> <small> <div> - {% set tags = get_taxonomy(kind="tags") %} + {% set tags = get_taxonomy(kind="tags", lang=lang) %} {% for post in tags.items %} <a href="{{ post.permalink }}">#{{ post.name }}</a> {% endfor %} |