Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
934 B
HTML
Raw Permalink Normal View History

2022-09-12 16:29:32 -07:00
{{ define "main" }}
<div class="layout-{{ .Page.Layout }} container mx-auto flex flex-col lg:flex-row items-start mb-32">
<div class="hidden lg:block lg:w-3/12 mt-24 sticky-sidebar flex-1">
<nav class="px-6 pt-2 pb-6 mb-8">
2022-09-12 16:29:32 -07:00
{{ partial "templates/left-nav.html" . }}
</nav>
</div>
<div class="lg:w-6/12 my-8 px-4 lg:px-0 w-full">
<header>
2022-09-12 16:29:32 -07:00
{{ partial "templates/breadcrumb.html" . }}
<h1 class="text-5xl mb-0">
{{ .Title }}
</h1>
</header>
<section class="mt-8 mb-16">
2022-09-12 16:29:32 -07:00
{{ .Content }}
</section>
</div>
<div class="hidden lg:block lg:w-3/12 mt-24 sticky-sidebar flex-1">
2022-09-12 16:29:32 -07:00
<nav class="px-6 mb-8">
{{ partial "templates/right-nav.html" . }}
</nav>
</div>
</div>
{{ end }}