aboutsummaryrefslogtreecommitdiff
path: root/common/base.j2
blob: 33b9233008a1f867c21900ce66c4915b38e5adf3 (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
<!DOCTYPE html>
<html lang="{{ lang }}">
  <head>
    <meta charset="UTF-8"/>
    <!-- <title>{{ _("Anastasis") }}</title> -->
    <meta name="description" content="{{ _('Anastasis key recovery system') }}" />
    {% include "common/header.j2.inc" %}
    {% block head_content %}{% endblock %}
  </head>
  <body>
  <div id="page-container">
   <div id="content-wrap">
    <div class="toolbar">
     {% include "common/navigation.j2.inc" %}
    </div>
    <div class="content">
    {% block body_content %}{% endblock %}
    </div>
    <footer id="footer">
    {% include "common/footer.j2.inc" %}
    </footer>
   </div>
   </div> 
  </body>
</html>