2024-08-03 22:49:09 -07:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<head>
|
|
|
|
<meta charset=utf-8>
|
2024-08-03 23:20:49 -07:00
|
|
|
<!-- {% block title %}{% endblock title %} -->
|
|
|
|
<title>{% block titletag %}{{ self.title() }}{% endblock titletag %}</title>
|
2024-08-03 22:49:09 -07:00
|
|
|
<meta name=viewport content="width=device-width, initial-scale=1.0">
|
|
|
|
<link rel=icon href="/favicon.png">
|
|
|
|
<link rel=stylesheet href="/common.css">
|
|
|
|
<body>
|
2024-08-03 23:20:49 -07:00
|
|
|
<h1>{% block titleheader %}{{ self.title() }}{% endblock titleheader %}</h1>
|
2024-08-03 22:49:09 -07:00
|
|
|
<main>
|
|
|
|
{% block content %}{% endblock content %}
|
|
|
|
</main>
|
2024-08-04 15:33:50 -07:00
|
|
|
<footer>
|
|
|
|
{% block footer %}{% endblock footer %}
|
|
|
|
</footer>
|