first commit
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
<footer class="site-footer">
|
||||
<div>
|
||||
<p>
|
||||
© {{ now.Format "2006" }} Rackaris Blog — Dokumentation &
|
||||
Konfiguration
|
||||
</p>
|
||||
<a href="/impressum/" class="nav-link">Impressum</a>
|
||||
</div>
|
||||
</footer>
|
||||
@@ -0,0 +1,14 @@
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>{{ if .Title }}{{ .Title }} | {{ end }}{{ .Site.Title }}</title>
|
||||
<meta
|
||||
name="description"
|
||||
content="{{ with .Description }}{{ . }}{{ else }}{{ .Site.Params.subtitle }}{{ end }}"
|
||||
/>
|
||||
<link rel="stylesheet" href="/css/styles.css" />
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
||||
<link
|
||||
href="https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;500;600&display=swap"
|
||||
rel="stylesheet"
|
||||
/>
|
||||
@@ -0,0 +1,14 @@
|
||||
<header class="site-header">
|
||||
<div class="header-inner">
|
||||
<div>
|
||||
<p class="eyebrow">Wilkommen zu</p>
|
||||
<h1>{{ .Site.Title }}</h1>
|
||||
<p class="subtitle">{{ .Site.Params.subtitle }}</p>
|
||||
</div>
|
||||
<nav class="site-nav" aria-label="Hauptnavigation">
|
||||
{{ range .Site.Menus.main }}
|
||||
<a href="{{ .URL }}" class="nav-link">{{ .Name }}</a>
|
||||
{{ end }}
|
||||
</nav>
|
||||
</div>
|
||||
</header>
|
||||
Reference in New Issue
Block a user