summaryrefslogtreecommitdiff
path: root/project/templates/base.html
blob: d8d7322081c4001168ab74e7b1c738df5ffb17a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<meta charset="utf-8">
<head>
    <title>Jed Barber - {% block title %}{% endblock %}</title>
    <link href="/css/default.css" rel="stylesheet">
</head>
<body>
    <div class="navbar">
        <ul class="nav">
            <li><a href="/">Home</a></li>
            <li><a href="/about.html">About</a></li>
            <li><a href="/git.html">Git</a></li>
        </ul>
    </div>
    <hr>
    <div class="content">
        {% block content %}
        {% endblock %}
    </div>
</body>
</html>