aboutsummaryrefslogtreecommitdiff
path: root/captain/templates/index.html
blob: 9f7b0ecf4c79867051fea3f91b06badf5e07e235 (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
37
38
<!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 }}/groups.html">Groups</a></li>
                    <li><a href="{{ base_url }}/about.html">About</a></li>
                    <li><a href="{{ base_url }}/{{ user_link_page }}.html">{{ user_link_text }}</a></li>
                </ul>
            </div>
            <h1 style="overflow: hidden; text-overflow: ellipsis;white-space: nowrap;">{{ title }} - I'm Levitating!</h1>
        </div>
        
        <div class="content">
            
            {{ contents }}
        
        </div>
        
        <div class="footing">
            <p>Copyright &copy; 2022 Approximatrix, LLC</p>
        </div>
    
    </body>
</html>