blob: b0387af14076085d60a240d11917749e28ed449c (
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
|
<!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://unpkg.com/purecss@2.1.0/build/pure-min.css"
integrity="sha384-yHIFVG6ClnONEA5yB5DJXfW2/KC173DIQrYoZMEtBvGzmf0PKiGyNEqe9N6BNDBH" crossorigin="anonymous">
<link rel="stylesheet" href="https://unpkg.com/purecss@2.1.0/build/grids-responsive-min.css" />
%= stylesheet '/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>
|