forked from michenriksen/gitrob
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlayout.erb
56 lines (55 loc) · 2.02 KB
/
layout.erb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="csrf-token" content="<%=h session[:csrf] %>">
<title>Gitrob</title>
<link href="/css/bootstrap.min.css" rel="stylesheet">
<link href="/css/tomorrow-night.css" rel="stylesheet">
<link href="/css/main.css" rel="stylesheet">
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/">Gitrob</a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="/">Assessments</a></li>
</ul>
</div>
</div>
</nav>
<div class="container">
<%= yield %>
</div>
<footer>
<div class="container">
<p class="center-text">
<a href="https://github.com/michenriksen/gitrob">Gitrob</a> v<%=h Gitrob::VERSION %> by <a href="http://michenriksen.com">Michael Henriksen</a> · <a href="https://github.com/michenriksen/gitrob/issues/new">Report an issue</a>
</p>
</div>
</footer>
<noscript>
<div class="noscript">
<h1>Being paranoid is good, but Gitrob requires JavaScript.</h1>
</div>
</noscript>
<script src="/js/jquery-2.1.4.min.js"></script>
<script src="/js/bootstrap.min.js"></script>
<script src="/js/main.js"></script>
</body>
</html>