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

<html lang="<%= $lang %>">
  <head>
    <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>