58 lines
1.5 KiB
HTML
58 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Sweet Bread</title>
|
|
|
|
<link rel="stylesheet" href="/static/style/tw.css">
|
|
<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="/static/script/rtime.js"></script>
|
|
<script
|
|
src="https://track.lair.moe/api/script.js"
|
|
data-site-id="1"
|
|
defer
|
|
></script>
|
|
<script
|
|
src="https://cdn.jsdelivr.net/npm/htmx.org@2.0.8/dist/htmx.min.js"
|
|
integrity="sha384-/TgkGk7p307TH7EXJDuUlgG3Ce1UVolAOFopFekQkkXihi5u/6OCvVKyz1W+idaz"
|
|
crossorigin="anonymous"
|
|
></script>
|
|
<script defer src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js"></script>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta
|
|
name="htmx-config"
|
|
content='{
|
|
"responseHandling":[
|
|
{"code":"204", "swap": false},
|
|
{"code":"304", "swap": false},
|
|
{"code":"[23]..", "swap": true},
|
|
{"code":"422", "swap": true},
|
|
{"code":"[45]..", "swap": false, "error":true},
|
|
{"code":"...", "swap": true}
|
|
]
|
|
}'
|
|
/>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<a href="{{ url_for('root.index') }}">Lair</a>
|
|
</header>
|
|
|
|
<main>
|
|
{% for m in (
|
|
'info',
|
|
'contacts',
|
|
'listenbrainz',
|
|
'steam',
|
|
'donate',
|
|
'88x31'
|
|
) %}
|
|
{% include 'risdeveau/templates/%s.htm' % m %}
|
|
{% endfor %}
|
|
</main>
|
|
</body>
|
|
</html>
|