Files
simple-labeler/code/templates/layout.html
2022-05-27 11:21:49 +03:00

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>