Files
labyricorn-site/templates/base.html
T
Labyricorn 797be4d878
Deploy production / deploy (push) Successful in 5s
Add optional narration players
2026-08-12 11:45:40 -07:00

57 lines
2.4 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="{{ this.summary|default('Labyricorn developer devlog and project hub')|striptags }}">
<title>{% if this._path != '/' %}{{ this.title }} — {% endif %}Labyricorn</title>
<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=IBM+Plex+Mono:wght@400;500;600&family=Inter:wght@400;500&family=Playfair+Display:ital,wght@0,600;0,700;1,500;1,600&display=swap" rel="stylesheet">
<link rel="icon" href="{{ '/static/favicon.svg'|url }}" type="image/svg+xml">
<link rel="stylesheet" href="{{ '/static/style.css'|url }}?v=13">
<script src="{{ '/static/tags.js'|url }}?v=1" defer></script>
<script src="{{ '/static/activity.js'|url }}?v=1" defer></script>
<script src="{{ '/static/narration.js'|url }}?v=1" defer></script>
</head>
<body>
<header class="site-header">
<div class="shell header-main">
<a class="brand" href="{{ '/'|url }}">Labyricorn</a>
<span class="tagline">// developer devlog &amp; project hub</span>
<nav class="primary-nav" aria-label="Primary navigation">
<a href="{{ '/projects'|url }}">Projects</a>
<a href="{{ '/articles'|url }}">Articles</a>
<a href="{{ '/blog'|url }}">Blog</a>
</nav>
</div>
<div class="shell header-meta">
<span>REG. NO. 004 — EST. LOCAL</span>
<div class="socials">
<a href="https://github.com/" rel="me">GitHub</a>
<a href="https://git.labyricorn.com/">Gitea</a>
<a href="https://linkedin.com/">LinkedIn</a>
<a href="https://twitch.tv/">Twitch</a>
<a href="https://youtube.com/">YouTube</a>
<a href="https://ko-fi.com/">Ko-fi</a>
</div>
</div>
</header>
<main>{% block body %}{% endblock %}</main>
<footer class="site-footer">
<div class="shell footer-inner">
<span>© 2026 Labyricorn — GENERATED FROM GIT, NEVER HAND-EDITED</span>
<nav aria-label="Footer navigation">
<a href="mailto:[email protected]">Contact</a>
<a href="{{ '/tags'|url }}">Tags</a>
<a href="https://github.com/">GitHub</a>
<a href="https://git.labyricorn.com/">Gitea</a>
<a href="https://ko-fi.com/">Ko-fi</a>
</nav>
</div>
</footer>
</body>
</html>