-
Notifications
You must be signed in to change notification settings - Fork 246
Expand file tree
/
Copy pathlayout.html
More file actions
35 lines (34 loc) · 964 Bytes
/
layout.html
File metadata and controls
35 lines (34 loc) · 964 Bytes
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
34
35
<!doctype html>
<html lang="en">
<head>
<title>Flask MongoEngine</title>
<link rel="stylesheet" href="https://cdn.simplecss.org/simple.min.css">
</head>
<style>
body {
grid-template-columns: auto;
}
textarea:not([cols]) {
width: auto;
}
</style>
<body>
<nav>
<ul>
<li><a href="{{ url_for("index") }}">Home</a></li>
<li><a href="{{ url_for("pagination") }}">Pagination</a></li>
<li><a href="{{ url_for("strings_demo_view") }}">Strings demo</a></li>
<li><a href="{{ url_for("numbers_demo_view") }}">Numbers demo</a></li>
<li><a href="{{ url_for("dates_demo_view") }}">DateTime demo</a></li>
<li><a href="{{ url_for("boolean_demo_view") }}">Booleans demo</a></li>
<li><a href="{{ url_for("dict_demo_view") }}">Dict/Json demo</a></li>
<li><a href="{{ url_for("binary_demo_view") }}">Binary/Files/Images demo</a></li>
</ul>
</nav>
<div>
<div>
{% block body %}{% endblock %}
</div>
</div>
</body>
</html>