Statistics
| Branch: | Tag: | Revision:

root / astakos / im / templates / base.html @ 890b0eaf

History | View | Annotate | Download (887 Bytes)

1
<!DOCTYPE html>
2
<html>
3
<head>
4
  <meta charset="utf-8" />
5
  <title>{{ title|default:"Astakos Login" }}</title>
6
  <link rel="stylesheet" href="/im/static/bootstrap.css">
7
  <script src="/im/static/jquery.js"></script>
8
  <script src="/im/static/jquery.tablesorter.js"></script>
9
  <script src="/im/static/main.js"></script>
10
  {% block head %}{% endblock %}
11
</head>
12
<body>
13
  <div class="container">
14
    <div style="padding: 5px 0px 0px 0px">
15
      <img src="/im/static/banner.png" width="900" height="200">
16
    </div>
17
    {% block title %}{% endblock %}
18
    
19
    {% if messages %}
20
    <ul class="messages">
21
        {% for message in messages %}
22
        <li{% if  %} class="alert-message.{{ message.tags }}"{% endif %}>{{ message }}</li>
23
        {% endfor %}
24
    </ul>
25
    {% endif %}
26

    
27
    {% block tabs %}{% endblock %}
28

    
29
    {% block body %}{% endblock %}
30
  </div>
31
</body>
32
</html>