summaryrefslogtreecommitdiff
path: root/templates/project/dashboards/layout.erb
blob: 66bf1e0bd71b2d2b9d5f13cd5594193a8bf99734 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8"/>
  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">

  <title><%= yield_content(:title) %></title>

  <script type="text/javascript"><%= javascripts %></script>
  <style><%= stylesheets %></style>

  <meta name="viewport" content="width=device-width, initial-scale=1"/> 
</head>
<body>

  <div class="wrapper">
    <%= yield %>
  </div>

</body>
</html>