blob: 1bbf8f4fb4ecdea90c62b341d042369e0e5a7cdf (
plain)
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
|
<html>
<head>
<title>{{ title }} - I'm Levitating!</title>
<link rel="stylsheet" href="/static/style.css" />
</head>
<body>
<div class="heading">
<div class="heading_menu">
<ul>
<li><a href="{{ base_url }}/home.html">Home</a></li>
<li><a href="{{ base_url }}/releases.html">Releases</a></li>
<li><a href="{{ base_url }}/jobs.html">Jobs</a></li>
<li><a href="{{ base_url }}/players.html">Players</a></li>
<li><a href="{{ base_url }}/instructions.html">Instructions</a></li>
<li><a href="{{ base_url }}/about.html">About</a></li>
</ul>
</div>
<h1>{{ title }} - I'm Levitating!</h1>
</div>
<div class="content">
{{ content }}
</div>
<div class="footing">
<p>Copyright © 2021 Approximatrix, LLC</p>
</div>
</body>
</html>
|