ccchh-website/themes/ccchh/layouts/_default/single.html

16 lines
316 B
HTML
Raw Normal View History

2023-10-02 12:08:18 +02:00
{{ define "main" }}
<main class="container" aria-role="main">
<header class="header">
<h1>{{ .Title }}</h1>
{{ with .Params.subtitle }}
<span class="subtitle">{{ . }}</span>
{{ end }}
</header>
<section class="content">
2023-10-02 12:08:18 +02:00
{{ .Content }}
</section>
2023-10-02 12:08:18 +02:00
</main>
{{ end }}