aboutsummaryrefslogtreecommitdiffstats
path: root/templates/base.html
blob: 1a3935f3c63044bd1d8c3c126169d823cc0ffa94 (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">
    <!-- local style here -->
  </style>
</head>
<body>
{% block body %}{% endblock %}
</body>
</html>