blob: 7f07a77814fbf7a538059936b95d390267a2763c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<!doctype html>
<html>
<head>
<title>flask app template</title>
<!-- <link href="/static/css/default.css" rel="stylesheet"> -->
<style type="text/css">
{% block style %}{% endblock %}
</style>
</head>
<body>
{% block body %}{% endblock %}
</body>
</html>
|