Files
moonweb-site/stefankoelle/_includes/base.njk
T
stefankoelle 8e54383b5a Rename hub to home in impressum and stefankoelle nav
- impressum.njk: (hub, smarthome, ...) -> (home, smarthome, ...)
- stefankoelle/_includes/base.njk: nav link 'hub' -> 'home'
2026-09-11 14:24:40 +02:00

49 lines
2.1 KiB
Plaintext

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{ title }} · {{ siteTitle | default("moonweb.org") }}</title>
<meta name="description" content="{{ description }}">
<link rel="canonical" href="{{ site.url }}{{ page.url }}">
<meta property="og:title" content="{{ title }} · {{ siteTitle | default("moonweb.org") }}">
<meta property="og:description" content="{{ description }}">
<meta property="og:url" content="{{ site.url }}{{ page.url }}">
<meta property="og:type" content="website">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="{{ title }} · {{ siteTitle | default("moonweb.org") }}">
<meta name="twitter:description" content="{{ description }}">
<link rel="icon" href="/favicon.svg" type="image/svg+xml">
<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=Lobster&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/shared-base.css">
<link rel="stylesheet" href="/theme.css">
</head>
<body>
<header class="site-header">
<div class="site-banner">
<span class="site-title">{{ siteTitle | default(section + ".moonweb.org") }}</span>
</div>
<nav class="site-switcher">
<a href="https://www.moonweb.org/">home</a>
<a href="https://www.moonweb.org/infra/">infra</a>
<a href="https://www.moonweb.org/smarthome/">smarthome</a>
<a href="https://www.moonweb.org/code/">code</a>
<a href="https://www.moonweb.org/retro/">retro</a>
<a href="https://stefankoelle.de">cv</a>
</nav>
</header>
<main>
{% if parent %}<a class="back-link" href="{{ parent }}">← Back to {{ section }} overview</a>{% endif %}
{{ content | safe }}
</main>
<footer class="site-footer">
<p>Part of the <a href="https://www.moonweb.org/">moonweb.org</a> homelab.</p>
<p><a href="https://www.moonweb.org/impressum/">Legal Notice &amp; Privacy Policy</a></p>
</footer>
</body>
</html>