birdsounds.media/layouts/_default/single.html

20 lines
370 B
HTML
Raw Permalink Normal View History

{{ define "main" }}
{{ if not hugo.IsProduction }}
<aside class="development-info">
<p>template: single.html</p>
{{debug.Dump .}}
</aside>
{{ end }}
<main>
<header class="section">
<div class="container">
<h1>{{.Title}}</h1>
</div>
</header>
<section class="content section">
<div class="container">
{{ .Content }}
</div>
</section>
</main>
{{ end }}