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

16 lines
318 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>
2023-11-03 20:36:12 +01:00
{{- with .Params.subtitle }}
2023-10-02 12:08:18 +02:00
<span class="subtitle">{{ . }}</span>
2023-11-03 20:36:12 +01:00
{{- end }}
2023-10-02 12:08:18 +02:00
</header>
<section class="content">
2023-10-02 12:08:18 +02:00
{{ .Content }}
</section>
2023-10-02 12:08:18 +02:00
</main>
{{ end }}