22 lines
No EOL
491 B
HTML
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 }} |