From 9cc98fec6be772d70c778e952bf11eecb78380c7 Mon Sep 17 00:00:00 2001 From: Arnaud Levy <contact@arnaudlevy.com> Date: Tue, 20 Feb 2024 06:45:44 +0100 Subject: [PATCH] Fix --- layouts/partials/GetPaginateTitle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/partials/GetPaginateTitle b/layouts/partials/GetPaginateTitle index abcc7c46..d5d08365 100644 --- a/layouts/partials/GetPaginateTitle +++ b/layouts/partials/GetPaginateTitle @@ -2,7 +2,7 @@ {{ $seoTitleSeparator := .separator}} {{ $page := i18n "commons.pagination.title" }} -{{if not .context.IsHome }} +{{if and (not .context.IsHome) (eq .kind "page") }} {{ with .context.Paginator }} {{ if or .HasPrev .HasNext }} {{ $currentPageNumber := .PageNumber}} -- GitLab