-
Notifications
You must be signed in to change notification settings - Fork 1
/
template.erb
34 lines (32 loc) · 1.01 KB
/
template.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Go Workshop</title>
<link href="https://fonts.googleapis.com/css?family=Roboto+Slab" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
<style>
body {
font-family: 'Roboto Slab', serif;
}
p.url {
font-family: Monospace;
}
span.line-numbers {
padding-right: 1em;
}
table {
width: 100%;
}
</style>
</head>
<body>
<div class="container">
<%= @body %>
<hr />
Copyright© <a href="http://www.353solutions.com" target="_blank">353solutions</a>.
<b>All rights reserved, DO NOT COPY!</b>
</div>
</body>
</html>