summaryrefslogtreecommitdiff
path: root/src/jwebmail/templates/mainlayout.html
blob: d3e99a5fc20e6554673f7cd4a3292801f1235d55 (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 lang="{{ get_locale().language }}">

<head>
  <meta charset=utf-8>
  <meta name="viewport" content="width=device-width, initial-scale=1">

  <link rel=stylesheet href="{{ url_for('static', filename="css/my_bulma.css") }}" >

  <title>
    {{ title or 'JWebmail' }}
  </title>
</head>

<body>
  <div class=jwm-page-container>
    <div class=jwm-content>
      {% block content required %}{% endblock %}
    </div>

    <footer class="footer jwm-footer">
      <div class="content has-text-centered">
        <a href="{{ url_for('about') }}">
          {% trans %}About{% endtrans %} JWebmail
        </a>
        <br>
        {% trans %}Version{% endtrans %}
        {{ version }}
      </div>
    </footer>
  <div>

  {% block scripts %}{% endblock %}

</body>

</html>