aboutsummaryrefslogtreecommitdiff
path: root/templates/core.html
blob: 4112cc6694366a9e522e9c9b614aa7d9db2693d4 (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
39
40
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <link href="/static/main.css" rel="stylesheet">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta http-equiv="Cache-control" content="no-cache">

    {% block title %}{% endblock %}
  </head>
  <body>
    
    <header>
      <div class="nav">
        <img src="/static/octopus.png" />
        <h1>{{ base.sitename }}</h1>
      </div>
      <div class="nav">
        <a href="{{ base.siteurl }}/">Overview</a>
        <a href="{{ base.siteurl }}/tree">File Browser</a>
        <a href="{{ base.siteurl }}/wiki">Wiki</a>
      </div>
    </header>

    {# Limits the width #}
    <div class="wrap">
      <div class="content">
        {% block content %}{% endblock %}
      </div>

      <div class="footer">
<pre>
Generated by <strong>octopus {{ base.version }}</strong>
In compliance with the <a href="https://en.wikipedia.org/wiki/Affero_General_Public_License">AGPL</a> you can find the sources for this software <strong><a href="{{ base.source }}">here</a></strong>!
</pre>
      </div>
      
    </div>
  </body>
</html>