mirror of
https://github.com/imfing/hextra.git
synced 2025-05-13 19:26:26 -04:00

chore: minor updates - reorg language settings - add icons for cards and steps chore: update about page chore: add style to kbd
18 lines
601 B
HTML
18 lines
601 B
HTML
{{ define "main" }}
|
|
<div class="mx-auto flex max-w-[90rem]">
|
|
{{ partial "sidebar.html" . }}
|
|
{{ partial "toc.html" . }}
|
|
<article class="w-full break-words flex min-h-[calc(100vh-4rem)] 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">
|
|
{{ partial "breadcrumb.html" . }}
|
|
<div class="content">
|
|
<h1>{{ .Title }}</h1>
|
|
{{ .Content }}
|
|
</div>
|
|
<div class="mt-16"></div>
|
|
{{ partial "pager.html" . }}
|
|
</main>
|
|
</article>
|
|
</div>
|
|
{{ end }}
|