Initial commit

This commit is contained in:
Nox Sluijtman 2023-08-10 03:39:50 +02:00
commit 07a9f6baba
13 changed files with 875 additions and 0 deletions

View file

@ -0,0 +1,3 @@
<footer>
The content of this page is lisences under <a href="https://creativecommons.org/licenses/by-nc-sa/4.0/">CC BY-NC-SA 4.0</a>
</footer>

View file

@ -0,0 +1,5 @@
<link rel='stylesheet' type='text/css' href='/style.css' />
<link rel='alternate' type='application/rss+xml' title="{{ .Site.Title }} RSS" href='/index.xml'>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta charset="UTF-8" />
<meta name="description" content="{{ with .Params.description }}{{ . }}{{ else }}{{ .Summary }}{{ end }}">

View file

@ -0,0 +1,4 @@
<header>
<h1><a href="{{ .Site.BaseURL }}">{{ .Site.Title }}</a></h1>
{{- partial "menu.html" . -}}
</header>

View file

@ -0,0 +1,7 @@
<menu type="toolbar">
{{range $name, $taxonomy := .Site.Taxonomies.tags}}
{{ with $.Site.GetPage (printf "/tags/%s" $name) }}
<a href={{ .RelPermalink }} title="All pages with tag <i>{{$name}}</i>">#{{$name}}</a>
{{end}}
{{end}}
</menu>