e007bdd4e7
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
25 lines
1.2 KiB
HTML
25 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 id="content" 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 }} |