summaryrefslogtreecommitdiff
path: root/templates/layouts/mainlayout.html.ep
blob: 8cf822c5b5fafe543201a3f4e39200a7d2be1ee3 (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
<!doctype html>

<html lang="<%= $lang %>">

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

  %= stylesheet '/css/my_bulma.css'

  <title>
    %= title || 'JWebmail'
  </title>
</head>

<body>
  %= content

  <footer class=footer>
    <div class="content has-text-centered">
      %= link_to about => begin
        %= ucfirst l 'about'
        JWebmail
      % end
      <br>
      %= ucfirst l 'version'
      %= $version
    </div>
  </footer>
</body>

</html>