forked from drowl87/hextra_mirror
14 lines
476 B
HTML
14 lines
476 B
HTML
{{ define "main" }}
|
|
<div class="mx-auto flex max-w-[90rem]">
|
|
<article class="typesetting-article 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)]">
|
|
<main class="w-full min-w-0 max-w-6xl px-6 pt-4 md:px-12">
|
|
<div>
|
|
<h1>{{ .Title }}</h1>
|
|
{{ .Content }}
|
|
</div>
|
|
<div class="mt-16"></div>
|
|
</main>
|
|
</article>
|
|
</div>
|
|
{{ end }}
|