From 1313325f00d0fe8396c1c7640ef5b6ff748add9b Mon Sep 17 00:00:00 2001 From: alexisben <alex@noesya.coop> Date: Thu, 28 Dec 2023 15:01:54 +0100 Subject: [PATCH] fix --- layouts/partials/blocks/templates/posts.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/layouts/partials/blocks/templates/posts.html b/layouts/partials/blocks/templates/posts.html index cf5e9a3d..c8b0fb9c 100644 --- a/layouts/partials/blocks/templates/posts.html +++ b/layouts/partials/blocks/templates/posts.html @@ -30,8 +30,8 @@ <ul class="categories categories--grid"> {{ range site.Taxonomies.posts_categories }} <li data-title="{{ .Page.Title }}"> - <a href="{{ .Permalink }}" class="title" aria-label="{{ i18n "commons.more_aria" (dict "Title" .Title) }}">{{ partial "PrepareHTML" .Title }}</a> - <p>{{ i18n "blocks.categories.items.count" (dict "Count" (len .)) }}</p> + <a href="{{ .Page.Permalink }}" class="title" aria-label="{{ i18n "commons.more_aria" (dict "Title" .Page.Title) }}">{{ partial "PrepareHTML" .Page.Title }}</a> + <p>{{ i18n "blocks.categories.items.count" ( len . ) }}</p> </li> {{ end }} </ul> -- GitLab