summaryrefslogtreecommitdiff
path: root/templates/layouts
diff options
context:
space:
mode:
Diffstat (limited to 'templates/layouts')
-rw-r--r--templates/layouts/mainlayout.html.ep21
1 files changed, 21 insertions, 0 deletions
diff --git a/templates/layouts/mainlayout.html.ep b/templates/layouts/mainlayout.html.ep
new file mode 100644
index 0000000..e084578
--- /dev/null
+++ b/templates/layouts/mainlayout.html.ep
@@ -0,0 +1,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>