diff options
Diffstat (limited to 'templates/layouts')
| -rw-r--r-- | templates/layouts/default.html.ep | 19 |
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> |
