Skip to content

Commit

Permalink
🐛 fix(i18n): localise date in single taxonomy listing
Browse files Browse the repository at this point in the history
  • Loading branch information
welpo committed Jan 4, 2024
1 parent dce495e commit 0aef23b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion templates/tags/single.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
{{ macros_page_header::page_header(title=term.name) }}

{% set max = section.extra.max_posts | default(value=999999) %}
{{ macros_list_posts::list_posts(posts=term.pages, max=max) }}
{{ macros_list_posts::list_posts(posts=term.pages, max=max, language_strings=language_strings) }}

<ul class="pagination">
<li class="page-item">
Expand Down
2 changes: 1 addition & 1 deletion templates/taxonomy_single.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
{{ macros_page_header::page_header(title=term.name) }}

{% set max = section.extra.max_posts | default(value=999999) %}
{{ macros_list_posts::list_posts(posts=term.pages, max=max) }}
{{ macros_list_posts::list_posts(posts=term.pages, max=max, language_strings=language_strings) }}

<ul class="pagination">
<li class="page-item">
Expand Down

0 comments on commit 0aef23b

Please sign in to comment.