[ADD] Theme2

This commit is contained in:
Falk Mueller
2025-10-19 18:59:32 +02:00
parent f5bbd6ea8a
commit 03bcd0ad74
20 changed files with 336 additions and 57 deletions

View File

@@ -0,0 +1,3 @@
<footer>
<p>&copy;{{ dateFormat "2006" now }} {{ .Site.Title }}</p>
</footer>

View File

@@ -0,0 +1,11 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>{{ if not .IsHome }}{{ .Title }} | {{ end }}{{ .Site.Title }}</title>
<link rel="stylesheet" href="/css/style.css" type="text/css" media="all" />
<link rel="icon" type="image/svg+xml" href="/img/Chaoszone.svg" />
{{ with .OutputFormats.Get "rss" -}} {{ printf `
<link rel="%s" type="%s" href="%s" title="%s" />
` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }} {{ end -}}

View File

@@ -0,0 +1,12 @@
<nav class="site-nav">
<a class="logo" href="{{ .Site.BaseURL }}">
<img src="/img/Chaoszone.svg" />
</a>
<ul class="main-menu">
{{ range.Site.Menus.main }}
<li>
<a href="{{ .URL }}">{{ .Name }}</a>
</li>
{{ end }}
</ul>
</nav>