14 lines
431 B
HTML
14 lines
431 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>{{ page.title }}</title>
|
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='style.css') }}">
|
|
<link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
</head>
|
|
<body>
|
|
<div class="page">
|
|
{% block body %}{% endblock %}
|
|
</div>
|
|
</body>
|
|
</html> |