summaryrefslogtreecommitdiff
path: root/templates/base.html
blob: 99a419bddd083aae1b6e37683464707bf465e52d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport"
          content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>{% block title %}{{ title }}{% endblock %}</title>
    <link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
    <link rel="stylesheet" href="{{ url_for('static', filename='main.css') }}">
    <script src="{{ url_for('static', filename='jquery.js') }}"></script>
</head>
<body>
<div id="content" class="content">
    {% block body %}
        No content found. THIS IS AN ERROR
    {% endblock %}
</div>
</body>
</html>