35 lines
750 B
HTML
35 lines
750 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Sweet Bread</title>
|
|
|
|
<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>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
</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>
|