13 lines
345 B
HTML
13 lines
345 B
HTML
<!DOCTYPE html>
|
|
<head>
|
|
<meta charset=utf-8>
|
|
<title>{% block title %}{% endblock title %}</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>{{ self.title() }}</h1>
|
|
<main>
|
|
{% block content %}{% endblock content %}
|
|
</main>
|