default.html
HTML document, ASCII text
1
<!DOCTYPE html>
2
<html lang="en">
3
<head>
4
<meta charset="UTF-8">
5
<link rel="stylesheet" href="/static/style.css" type="text/css">
6
<link rel="icon" href="/static/logo.svg" type="image/x-icon">
7
<meta name="viewport" content="width=device-width, initial-scale=1.0">
8
<title>{% block title %}{% endblock %}</title>
9
</head>
10
<body>
11
<nav>
12
<a href="/" id="navi-logo">
13
<img src="/static/logo.svg" alt="">
14
Dashboard
15
</a>
16
<div id="navi-spacer"></div>
17
18
{% if not session.username %}
19
<a href="/login">
20
Log In
21
</a>
22
<a href="/signup">
23
Sign Up
24
</a>
25
{% else %}
26
<a href="/logout">
27
{{ session.username }} (Log Out)
28
</a>
29
{% endif %}
30
</nav>
31
{% block content %}{% endblock %}
32
</body>
33
</html>