aboutsummaryrefslogtreecommitdiffstats
path: root/libpathod/templates/frame.html
blob: 3dd7fbf8ffc414acd6e6c3e56de554dfe81ebedc (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
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <title>Pathod</title>
    <link href="/static/bootstrap.min.css" rel="stylesheet">
    <script src="/static/jquery-1.7.2.min.js"></script>
    <style>
        body {
            padding-top: 45px;
        }
    </style>
  </head>

  <body>
    <div class="navbar navbar-fixed-top">
      <div class="navbar-inner">
        <div class="container">
          <a class="brand" href="/">Pathod</a>
          <ul class="nav">
            <li {% if section== "main" %} class="active" {% endif %}><a href="/">Main</a></li>
            <li {% if section== "log" %} class="active" {% endif %}><a href="/log">Log</a></li>
            <li {% if section== "help" %} class="active" {% endif %}><a href="/help">Help</a></li>
          </ul>
        </div>
      </div>
    </div>

    <div class="container">
        
        {% block body %}  
        {% endblock %}  

    <hr>
    <p>by <a href="http://corte.si">Aldo Cortesi</a> </p>
    </div> <!-- /container -->

  </body>
</html>