14 lines
466 B
HTML
14 lines
466 B
HTML
<!DOCTYPE html>
|
|
<head>
|
|
<meta charset=utf-8>
|
|
<!-- {% block title %}{% endblock title %} -->
|
|
<title>{% block titletag %}{{ self.title() }}{% endblock titletag %}</title>
|
|
<meta name=viewport content="width=device-width, initial-scale=1.0">
|
|
<link rel=icon href="/favicon.png">
|
|
<link rel=stylesheet href="/common.css">
|
|
<body>
|
|
<h1>{% block titleheader %}{{ self.title() }}{% endblock titleheader %}</h1>
|
|
<main>
|
|
{% block content %}{% endblock content %}
|
|
</main>
|