Create CCCHH theme

This commit is contained in:
jtbx 2023-10-02 12:08:18 +02:00
commit 2d267ba9fe
23 changed files with 629 additions and 1 deletions

View file

@ -0,0 +1,12 @@
<!DOCTYPE html>
<html>
<head>
{{- partial "head.html" . }}
</head>
<body>
{{- partial "header.html" . }}
{{- block "main" . }}{{- end }}
{{- partial "footer.html" . }}
</body>
</html>

View file

@ -0,0 +1,13 @@
{{ define "main" }}
<main class="container" aria-role="main">
<header class="header">
<h1>{{ .Title }}</h1>
{{ with .Params.subtitle }}
<span class="subtitle">{{ . }}</span>
{{ end }}
</header>
<div class="content">
{{ .Content }}
</div>
</main>
{{ end }}