summaryrefslogtreecommitdiffstats
path: root/views/layout.ecr
blob: a0b9813d7ce26958c19ff82615212b4ac64b8e3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>

<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>Visor</title>
  <meta content="">
  <link rel="stylesheet" href="/css/pure-min.css">
  <link rel="stylesheet" href="/css/grids-responsive-min.css">
</head>

<body>
  <div class="pure-g">
    <div class="pure-u-1 pure-u-md-1-5"></div>
    <div class="pure-u-1 pure-u-md-3-5">
      <%= content %>
    </div>
    <div class="pure-u-1 pure-u-md-1-5"></div>
  </div>
</body>

</html>