trwnh.com/unified.test.hugo/layouts/_default/index.html
2024-11-16 16:42:05 -06:00

22 lines
No EOL
491 B
HTML

{{ define "head" }}
{{ end }}
{{ define "body" }}
<body class="layout-_default-index">
{{ partial "site-header.html" . }}
<main id="main">
<header class="index-header section">
<div class="container">
<h1>{{ .Title }}</h1>
{{ if isset .Params "summary" }}<p class="subtitle">{{ .Summary }}</p>{{ end }}
</div>
</header>
<section class="index-content section">
<div class="container hugo-content">
{{ .Content }}
</div>
</section>
</main>
{{ partial "site-footer.html" . }}
</body>
{{ end }}