summaryrefslogtreecommitdiff
path: root/shopdb/app/templates/layout.html
blob: e63f7460eb3fc3e838718e70ad409a7afa3170c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="{{ url_for('static', filename='css/main.css') }}">
</head>
<body>

<div class="container">
    {% block content %}
    {% endblock %}
</div>

</body>
</html>