2023-08-25 01:09:36 +01:00
|
|
|
{{ define "main" }}
|
2024-02-20 17:59:31 -05:00
|
|
|
<div class='hx-mx-auto hx-flex {{ partial "utils/page-width" . }}'>
|
2023-08-25 01:09:36 +01:00
|
|
|
{{ partial "sidebar.html" (dict "context" . "disableSidebar" true) }}
|
2024-02-20 17:59:31 -05:00
|
|
|
<div class="hx-w-full hx-break-words hx-min-h-[calc(100vh-var(--navbar-height))] hx-min-w-0 hx-pb-8 hx-pt-8 md:hx-pt-12 hx-pl-[max(env(safe-area-inset-left),1.5rem)] hx-pr-[max(env(safe-area-inset-left),1.5rem)]">
|
|
|
|
<div class="hx-flex hx-flex-col hx-items-start">
|
2023-09-26 08:15:31 +01:00
|
|
|
{{ .Content }}
|
|
|
|
</div>
|
2023-08-25 01:09:36 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{ end }}
|