2023-07-25 23:27:01 +01:00
|
|
|
{{ define "main" }}
|
2023-09-20 23:36:00 +01:00
|
|
|
<div class='mx-auto flex {{ partial "utils/page-width" . }}'>
|
2023-08-24 22:29:53 +01:00
|
|
|
{{ partial "sidebar.html" (dict "context" . "disableSidebar" true "displayPlaceholder" true) }}
|
2023-08-21 23:37:49 +01:00
|
|
|
{{ partial "toc.html" . }}
|
2023-08-24 00:36:10 +01:00
|
|
|
<article class="w-full break-words flex min-h-[calc(100vh-var(--navbar-height))] min-w-0 justify-center pb-8 pr-[calc(env(safe-area-inset-right)-1.5rem)]">
|
2023-07-30 12:53:06 +01:00
|
|
|
<main class="w-full min-w-0 max-w-6xl px-6 pt-4 md:px-12">
|
2023-09-10 09:54:30 -04:00
|
|
|
<br class="mt-1.5 text-sm" />
|
2023-08-21 23:37:49 +01:00
|
|
|
<h1 class="text-center mt-2 text-4xl font-bold tracking-tight text-slate-900 dark:text-slate-100">{{ .Title }}</h1>
|
2023-08-27 16:20:25 +01:00
|
|
|
<div class="mb-16"></div>
|
2023-08-21 23:37:49 +01:00
|
|
|
<div class="content">
|
2023-07-30 12:53:06 +01:00
|
|
|
{{ .Content }}
|
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
</article>
|
2023-07-25 23:27:01 +01:00
|
|
|
</div>
|
|
|
|
{{ end }}
|