summaryrefslogtreecommitdiff
path: root/templates/layouts/mainlayout.html.ep
blob: 2cd46718c1db55da7007e33f9a611c2a74aa971f (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">

  %# <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/purecss@3.0.0/build/pure-min.css" integrity="sha384-X38yfunGUhNzHpBaEBsWLO+A0HDYOQi8ufWDkZ0k9e0eXz/tH3II7uKZ9msv++Ls" crossorigin="anonymous">
  %# <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/purecss@3.0.0/build/grids-responsive-min.css">
  %= stylesheet '/css/style.css'

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

<body>
  %= content

  <footer>
    %= link_to about => begin
      %= ucfirst l 'about'
      JWebmail
    % end
    <br>
    %= ucfirst l 'version'
    %= $version
  </footer>
</body>

</html>