* Feature: disable next/previous pagination buttons site-wide * Moved the displayPagination to the layout level and adjusted the documentation. * fix: improve pagination docs and layout whitespace - Fix indentation in docs layout templates - Add pagination documentation for all languages (fa, ja, zh-cn) - Simplify documentation to be more succinct --------- Co-authored-by: Xin <xin@imfing.com>
26 lines
1.2 KiB
HTML
26 lines
1.2 KiB
HTML
{{ define "main" }}
|
|
<div class='hx:mx-auto hx:flex hextra-max-page-width'>
|
|
{{ partial "sidebar.html" (dict "context" .) }}
|
|
{{ partial "toc.html" . }}
|
|
<article class="hx:w-full hx:break-words hx:flex hx:min-h-[calc(100vh-var(--navbar-height))] hx:min-w-0 hx:justify-center hx:pb-8 hx:pr-[calc(env(safe-area-inset-right)-1.5rem)]">
|
|
<main class="hx:w-full hx:min-w-0 hextra-max-content-width hx:px-6 hx:pt-4 hx:md:px-12">
|
|
{{ partial "breadcrumb.html" (dict "page" . "enable" true) }}
|
|
<div class="content">
|
|
{{ if .Title }}
|
|
<div class="hx:flex hx:flex-col hx:sm:flex-row hx:items-start hx:sm:items-center hx:sm:justify-between hx:gap-4 hx:mb-4">
|
|
<h1 class="hx:mb-0">{{ .Title }}</h1>
|
|
{{ partial "components/page-context-menu" . }}
|
|
</div>
|
|
{{ end }}
|
|
{{ .Content }}
|
|
</div>
|
|
{{ partial "components/last-updated.html" . }}
|
|
{{- if (site.Params.page.displayPagination | default true) -}}
|
|
{{- partial "components/pager.html" . -}}
|
|
{{- end -}}
|
|
{{ partial "components/comments.html" . }}
|
|
</main>
|
|
</article>
|
|
</div>
|
|
{{ end }}
|