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>
|
2023-10-05 23:02:20 +02:00
|
|
|
|
|
|
|
<section class="content">
|
2023-10-02 12:08:18 +02:00
|
|
|
{{ .Content }}
|
2023-10-05 23:02:20 +02:00
|
|
|
</section>
|
|
|
|
|
2023-10-02 12:08:18 +02:00
|
|
|
</main>
|
|
|
|
{{ end }}
|