15 lines
360 B
HTML
15 lines
360 B
HTML
<!doctype html>
|
|
<head>
|
|
<title>{{ title }}</title>
|
|
<link rel=stylesheet type=text/css href="{{ url_for('static', filename='style.css') }}">
|
|
<meta name="viewport" content="width=440" />
|
|
<script language="javascript" src="{{ url_for('static', filename='script.js') }}" ></script>
|
|
|
|
</head>
|
|
<body>
|
|
<div class=page>
|
|
|
|
{% block body %}{% endblock %}
|
|
</div>
|
|
</body>
|