First template
Some checks failed
Deploy Hugo site / deploy (push) Failing after 47s

This commit is contained in:
2026-03-16 22:25:02 +01:00
parent d8d15dc0ec
commit daf6b8f55f
17 changed files with 665 additions and 5 deletions

View File

@@ -0,0 +1,16 @@
<footer class="site-footer">
<div class="page-shell footer-inner">
<p>{{ site.Title }}.</p>
<div class="footer-links">
{{ with site.Params.github }}
<a href="{{ . }}">GitHub</a>
{{ end }}
{{ with site.Params.linkedin }}
<a href="{{ . }}">LinkedIn</a>
{{ end }}
{{ with site.Params.email }}
<a href="mailto:{{ . }}">Email</a>
{{ end }}
</div>
</div>
</footer>

View File

@@ -0,0 +1,10 @@
<header class="site-header">
<div class="page-shell header-inner">
<a class="brand" href="/">{{ site.Title }}</a>
<nav class="site-nav" aria-label="Main navigation">
{{ range site.Menus.main }}
<a href="{{ .URL }}">{{ .Name }}</a>
{{ end }}
</nav>
</div>
</header>