Replace _internal subdirectory in partials

I originally put it there to mimic the old pattern before Hugo 0.148,
but it probably just makes things confusing.

Fixes #90
This commit is contained in:
2025-08-07 01:05:06 -05:00
parent b79c956c07
commit 22fff1a9c5
2 changed files with 1 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
{{ if gt .Paginator.TotalPages 1 }} {{ if gt .Paginator.TotalPages 1 }}
<nav class="pagination"> <nav class="pagination">
{{/* https://github.com/gohugoio/hugo/blob/a88b488181279befd50e1d127f9f67604f2f9854/tpl/tplimpl/embedded/templates/_partials/pagination.html */}} {{/* https://github.com/gohugoio/hugo/blob/a88b488181279befd50e1d127f9f67604f2f9854/tpl/tplimpl/embedded/templates/_partials/pagination.html */}}
{{ partial "_internal/pagination.html" . }} {{ partial "pagination-hugo.html" . }}
</nav> </nav>
{{ end }} {{ end }}