Files
abot/templates/layout.html
2018-12-02 23:11:32 +02:00

13 lines
350 B
HTML

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