summaryrefslogtreecommitdiff
path: root/templates/layouts/default.html.ep
blob: 8105c9bb7246134f4b5a17d73216b3e0d43ff143 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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>