forked from drowl87/hextra_mirror

* feat: add feature grid and card shortcodes * feat: add markdown content to hextra home * chore: add button for hextra home * chore: add heading and subtitle * chore: finish moving hextra home to shortcodes * chore: regenerate css * chore: improve hextra home layout shortcodes * chore: update css * chore: decrease button size
11 lines
461 B
HTML
11 lines
461 B
HTML
{{ define "main" }}
|
|
<div class='mx-auto flex {{ partial "utils/page-width" . }}'>
|
|
{{ partial "sidebar.html" (dict "context" . "disableSidebar" true) }}
|
|
<div class="w-full break-words min-h-[calc(100vh-var(--navbar-height))] min-w-0 pb-8 pt-8 md:pt-12 pl-[max(env(safe-area-inset-left),1.5rem)] pr-[max(env(safe-area-inset-left),1.5rem)]">
|
|
<div class="flex flex-col items-start">
|
|
{{ .Content }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{ end }}
|