-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbase.html
33 lines (26 loc) · 989 Bytes
/
base.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
{% block css %}
{% endblock %}
<!-- <link rel="stylesheet" type="text/css" href="{{ url_for('static',filename='home.css') }}"> -->
<!-- <link rel="stylesheet" type="text/css" href="{{ url_for('static',filename='days.css') }}"> -->
<title>Document</title>
</head>
<body>
<nav>
<a href="{{ url_for('feature.home') }}">Week overview</a>
<a href="{{ url_for('feature.mon') }}">Monday</a>
<a href="{{ url_for('feature.tues') }}">Tuesday</a>
<a href="{{ url_for('feature.wed') }}">Wednesday</a>
<a href="{{ url_for('feature.thurs') }}">Thursday</a>
<a href="{{ url_for('feature.fri') }}">Friday</a>
<a href="{{ url_for('feature.sat') }}">Saturday</a>
<a href="{{ url_for('feature.sun') }}">Sunday</a>
</nav>
{% block content %}
{% endblock %}
</body>
</html>