hextra_mirror/layouts/hextra-home.html

11 lines
503 B
HTML
Raw Normal View History

2023-08-25 01:09:36 +01:00
{{ define "main" }}
<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) }}
<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">
{{ .Content }}
</div>
2023-08-25 01:09:36 +01:00
</div>
</div>
{{ end }}