summaryrefslogtreecommitdiff
path: root/src/jwebmail/templates/mainlayout.html
blob: 46a07af6be1dbbcaf1eb66991b83503917e7af3b (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
<!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>
  {% block content required %}{% endblock %}

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

  {% block scripts %}{% endblock %}

</body>

</html>