2026-01-22 23:55:58 +03:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<title>Sweet Bread</title>
|
2025-09-05 13:57:52 +03:00
|
|
|
|
2026-01-22 23:55:58 +03:00
|
|
|
<link rel="stylesheet" href="/static/style/main.css">
|
|
|
|
|
<link rel="stylesheet" href="/static/style/risdeveau.css">
|
|
|
|
|
<link rel="icon" type="image/webp" href="/static/icon/us/risdeveau.webp" />
|
|
|
|
|
<script
|
|
|
|
|
src="https://track.lair.moe/api/script.js"
|
|
|
|
|
data-site-id="1"
|
|
|
|
|
defer
|
|
|
|
|
></script>
|
2026-02-05 14:20:03 +03:00
|
|
|
<script
|
|
|
|
|
src="https://cdn.jsdelivr.net/npm/htmx.org@2.0.8/dist/htmx.min.js"
|
|
|
|
|
integrity="sha384-/TgkGk7p307TH7EXJDuUlgG3Ce1UVolAOFopFekQkkXihi5u/6OCvVKyz1W+idaz"
|
|
|
|
|
crossorigin="anonymous"
|
|
|
|
|
></script>
|
2026-01-22 23:55:58 +03:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<header>
|
|
|
|
|
<a href="{{ url_for('root.index') }}">Lair</a>
|
|
|
|
|
</header>
|
2026-01-19 00:39:01 +03:00
|
|
|
|
2026-01-22 23:55:58 +03:00
|
|
|
<main>
|
|
|
|
|
{% for m in (
|
|
|
|
|
'info',
|
|
|
|
|
'contacts',
|
|
|
|
|
'listenbrainz',
|
2026-02-04 00:34:16 +03:00
|
|
|
'steam',
|
2026-01-22 23:55:58 +03:00
|
|
|
'donate',
|
|
|
|
|
'88x31'
|
|
|
|
|
) %}
|
|
|
|
|
{% include 'risdeveau/templates/%s.htm' % m %}
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</main>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|