summaryrefslogtreecommitdiff
path: root/templates/layouts/mainlayout.html.ep
blob: 782bcdd5943663f2423485d85e362c292b0b1b1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>

<html lang="<%= $lang %>">
  <head>
    <meta charset=UTF-8>
    <title> <%= stash('title') || 'JWebmail' %> </title>
    <link href="/style.css" rel=stylesheet>
  </head>

  <body>
    %= content

    <footer>
      <a href="<%= url_for('about') %>">
        <%= ucfirst l 'about' %> JWebmail
      </a>
      <br/>
      <%= ucfirst l 'version' %> <%= $version %>
    </footer>
  </body>
</html>