trwnh.com/unified.test.hugo/layouts/_default/index.html

22 lines
491 B
HTML
Raw Normal View History

2024-11-16 22:42:05 +00:00
{{ 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" . }}
2024-10-05 06:27:07 +00:00
</body>
2024-11-16 22:42:05 +00:00
{{ end }}