diff options
author | osbre | 2024-08-17 20:53:15 +0000 |
---|---|---|
committer | osbre | 2024-08-17 20:53:15 +0000 |
commit | c13e8af6e06120e916cc58bf95fdada09d7cc9c8 (patch) | |
tree | 61e64201db18bae4c080a728db5f03ddff5e79aa /templates | |
parent | 612e4d3bac02ad9293305c4298886c3906c2cddb (diff) | |
download | zola-bearblog-c13e8af6e06120e916cc58bf95fdada09d7cc9c8.tar.lz zola-bearblog-c13e8af6e06120e916cc58bf95fdada09d7cc9c8.tar.zst zola-bearblog-c13e8af6e06120e916cc58bf95fdada09d7cc9c8.zip |
Use translation key in `taxonomy_single.html`
Diffstat (limited to 'templates')
-rw-r--r-- | templates/taxonomy_single.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/taxonomy_single.html b/templates/taxonomy_single.html index 2e5533b..3d33731 100644 --- a/templates/taxonomy_single.html +++ b/templates/taxonomy_single.html @@ -3,7 +3,7 @@ {%- block main -%} <main> {%- if term %} - <h3 class="filter">Filtering for "{{ term.name }}"</h3> + <h3 class="filter">{{ trans(key="filtering_for", lang=lang) }} "{{ term.name }}"</h3> <small> <a href="{{ get_url(path="@/blog/_index.md", lang=lang) }}">{{ trans(key="remove_filter", lang=lang) }}</a> </small> |