23 lines
1.2 KiB
HTML
23 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>{% block title required %}{% endblock %} - Eorzea Songbook</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=1" />
|
|
<meta name="description" content="Listen to the motifs of Final Fantasy XIV's soundtrack." />
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Shippori+Mincho|Shippori+Mincho:bold|Zen+Maru+Gothic|Zen+Maru+Gothic:bold" />
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}" />
|
|
{%block sheet %}{% endblock %}
|
|
<link rel="icon" sizes="16x16 32x32 48x48" type="image/png" href="" />
|
|
<script src="https://unpkg.com/htmx.org@1.9.2" integrity="sha384-L6OqL9pRWyyFU3+/bjdSri+iIphTN/bvYyM37tICVyOJkWZLpP2vGn6VUEXgzg6h" crossorigin="anonymous"></script>
|
|
<script src="{{ url_for('static', filename='script.js') }}"></script>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{% block nav %}{% include 'nav.html' %}{% endblock %}
|
|
<main>{% block content required %}{% endblock %}</main>
|
|
{% block footer %}{% include 'footer.html' %}{% endblock %}
|
|
|
|
</body>
|
|
</html> |