blob: ae87e729552475846dccf0588e649d57db820090 (
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
35
36
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>{{ title }} - I'm Levitating!</title>
<link rel="stylesheet" href="{{ base_url }}/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">
{{ contents }}
</div>
<div class="footing">
<p>Copyright © 2021 Approximatrix, LLC</p>
</div>
</body>
</html>
|