erynwells.me/layouts/index.html
Eryn Wells 1713d5f849 Move site navigation to a partial
It can now be shared between the index and site header templates.
2023-05-20 08:27:55 -07:00

9 lines
221 B
HTML

{{ define "body" }}
<main>
<div class="platter grid">
<h1 class="site">{{ partial "site_name.html" .Title }}</h1>
<div id="content">
{{ .Content }}
</div>
{{ partial "site_nav.html" . }}
{{ end }}