blob: 9f36006dcda1e7751c175e262ade6356ccee86db (
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
|
<!DOCTYPE html>
<html lang="<%= $lang %>">
<head>
<meta charset=UTF-8>
<title>
%= stash('title') || 'JWebmail'
</title>
%= stylesheet '/style.css'
</head>
<body>
%= content
<footer>
%= link_to about => begin
%= ucfirst l 'about'
JWebmail
% end
<br />
%= ucfirst l 'version'
%= $version
</footer>
</body>
</html>
|