summaryrefslogtreecommitdiff
path: root/templates/layouts/default.html.ep
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2017-01-12 21:13:44 +0100
committerDaniel Friesel <derf@finalrewind.org>2017-01-12 21:13:44 +0100
commitcf9159cdd0173282b466d702c615fa92f2ecfe15 (patch)
treefd0f593bf71e0cc48733e8f7b0dcf6dc84ae9737 /templates/layouts/default.html.ep
wat
Diffstat (limited to 'templates/layouts/default.html.ep')
-rw-r--r--templates/layouts/default.html.ep19
1 files changed, 19 insertions, 0 deletions
diff --git a/templates/layouts/default.html.ep b/templates/layouts/default.html.ep
new file mode 100644
index 0000000..8105c9b
--- /dev/null
+++ b/templates/layouts/default.html.ep
@@ -0,0 +1,19 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <title><%= stash('title') // 'picomon' %></title>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+% if ($self->stash('refresh_interval')) {
+ <meta http-equiv="refresh" content="<%= $self->stash('refresh_interval') %>"/>
+% }
+
+
+ %= stylesheet '/static/default.css'
+</head>
+<body>
+
+%= content
+
+</body>
+</html>