From 650dfc531e1e5fc0102853f4d9ad816e23cef61f Mon Sep 17 00:00:00 2001 From: Will Faught Date: Fri, 12 Jul 2024 13:29:12 -0700 Subject: [PATCH] Rename page.html to list-item.html --- layouts/partials/paige/{page.html => list-item.html} | 0 layouts/partials/paige/pages.html | 10 +++++----- 2 files changed, 5 insertions(+), 5 deletions(-) rename layouts/partials/paige/{page.html => list-item.html} (100%) diff --git a/layouts/partials/paige/page.html b/layouts/partials/paige/list-item.html similarity index 100% rename from layouts/partials/paige/page.html rename to layouts/partials/paige/list-item.html diff --git a/layouts/partials/paige/pages.html b/layouts/partials/paige/pages.html index 11506ad9..a1fe3235 100644 --- a/layouts/partials/paige/pages.html +++ b/layouts/partials/paige/pages.html @@ -81,13 +81,13 @@ {{ if or $sections $pages }} {{ range $ordered }} - {{ partial "paige/page.html" . }} + {{ partial "paige/list-item.html" . }} {{ end }} {{ else }} {{ $pager := $page.Paginate $ordered }} {{ range $pager.Pages }} - {{ partial "paige/page.html" . }} + {{ partial "paige/list-item.html" . }} {{ end }} {{ template "pagination" (dict "page" $page "pager" $pager) }} @@ -121,13 +121,13 @@ {{ if $pages }} {{ range $ordered }} - {{ partial "paige/page.html" . }} + {{ partial "paige/list-item.html" . }} {{ end }} {{ else }} {{ $pager := $page.Paginate $ordered }} {{ range $pager.Pages }} - {{ partial "paige/page.html" . }} + {{ partial "paige/list-item.html" . }} {{ end }} {{ template "pagination" (dict "page" $page "pager" $pager) }} @@ -162,7 +162,7 @@ {{ $pager := $page.Paginate $ordered }} {{ range $pager.Pages }} - {{ partial "paige/page.html" . }} + {{ partial "paige/list-item.html" . }} {{ end }} {{ template "pagination" (dict "page" $page "pager" $pager) }}