add projects page; move to hugo;
All checks were successful
Build and Push Docker Container / build-and-push (push) Successful in 1m59s

This commit is contained in:
2026-02-12 14:38:32 +01:00
parent 6c2b475e10
commit ecd83d9b79
31 changed files with 1117 additions and 140 deletions

View File

@@ -0,0 +1,16 @@
{{ define "main" }}
{{- partial "background.html" . -}}
<main class="centered">
<h1>{{ .Site.Title }}</h1>
<nav>
<span class="nav-label">services</span>
{{ range .Site.Params.links }}
<a href="{{ .url }}">{{ .name }}</a>
{{ end }}
<span class="nav-label">pages</span>
<a href="/projects/">projects</a>
</nav>
</main>
{{ end }}