2023-07-26 06:27:01 +08:00
|
|
|
{{ define "main" }}
|
2024-02-21 06:59:31 +08:00
|
|
|
<div class='hx-mx-auto hx-flex {{ partial "utils/page-width" . }}'>
|
2023-08-08 06:48:07 +08:00
|
|
|
{{ partial "sidebar.html" (dict "context" .) }}
|
2023-07-30 00:41:25 +08:00
|
|
|
{{ partial "toc.html" . }}
|
2024-02-21 06:59:31 +08:00
|
|
|
<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 hx-max-w-6xl hx-px-6 hx-pt-4 md:hx-px-12">
|
2023-07-30 00:41:25 +08:00
|
|
|
{{ partial "breadcrumb.html" . }}
|
|
|
|
<div class="content">
|
2024-09-14 21:28:30 +08:00
|
|
|
{{ if .Title }}<h1>{{ .Title }}</h1>{{ end }}
|
2023-07-30 00:41:25 +08:00
|
|
|
{{ .Content }}
|
|
|
|
</div>
|
2023-08-21 02:20:24 +08:00
|
|
|
{{ partial "components/last-updated.html" . }}
|
2023-08-10 05:57:43 +08:00
|
|
|
{{ partial "components/pager.html" . }}
|
2023-09-27 06:33:27 +08:00
|
|
|
{{ partial "components/comments.html" . }}
|
2023-07-30 00:41:25 +08:00
|
|
|
</main>
|
|
|
|
</article>
|
2023-07-26 06:27:01 +08:00
|
|
|
</div>
|
2024-09-14 21:28:30 +08:00
|
|
|
{{ end }}
|