Files
labyricorn-site/templates/base.html
T
Labyricorn a88092631a
Deploy production / deploy (push) Successful in 21s
Add Atom and RSS feeds
2026-08-23 17:37:05 -07:00

62 lines
2.8 KiB
HTML

<!doctype html>
{% from "macros/social-sharing.html" import social_metadata with context %}
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{% if this._path != '/' %}{{ this.title }} — {% endif %}Labyricorn</title>
{% block social_head %}{{ social_metadata(this) }}{% endblock %}
{% block feed_head %}{% endblock %}
<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=25">
<script src="{{ '/static/tags.js'|url }}?v=2" defer></script>
<script src="{{ '/static/activity.js'|url }}?v=1" defer></script>
<script src="{{ '/static/hero-circuit.js'|url }}?v=2" defer></script>
<script src="{{ '/static/section-heroes.js'|url }}?v=1" defer></script>
<script src="{{ '/static/narration.js'|url }}?v=1" defer></script>
<script src="{{ '/static/social-share.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/Labyricorn" rel="me">GitHub</a>
<a href="https://git.labyricorn.com/">Gitea</a>
<a href="https://www.linkedin.com/in/christopher-chambers-694b7a86/">LinkedIn</a>
<a href="https://www.twitch.tv/labyricorn">Twitch</a>
<a href="https://www.youtube.com/@labyricorn">YouTube</a>
<a href="https://ko-fi.com/labyricorn">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/Labyricorn">GitHub</a>
<a href="https://git.labyricorn.com/">Gitea</a>
<a href="https://ko-fi.com/labyricorn">Ko-fi</a>
</nav>
</div>
</footer>
</body>
</html>