2023-07-19 22:11:34 +01:00
|
|
|
{{ define "main" }}
|
2023-09-03 11:12:53 -04:00
|
|
|
<div class="mx-auto flex max-w-[90rem]">
|
2023-08-24 22:29:53 +01:00
|
|
|
{{ partial "sidebar.html" (dict "context" . "disableSidebar" true "displayPlaceholder" true) }}
|
2023-08-12 16:45:00 +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-08-12 16:45:00 +01:00
|
|
|
<main class="w-full min-w-0 max-w-6xl px-6 pt-4 md:px-12">
|
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-12 16:45:00 +01:00
|
|
|
<div class="content">
|
|
|
|
{{ .Content }}
|
|
|
|
</div>
|
|
|
|
</main>
|
2023-07-19 22:11:34 +01:00
|
|
|
</article>
|
|
|
|
</div>
|
|
|
|
{{ end }}
|