-
Notifications
You must be signed in to change notification settings - Fork 4
/
template.html
58 lines (50 loc) · 1.25 KB
/
template.html
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
57
58
<!DOCTYPE html>
<html>
<head>
<title>Backbone.Handlebars</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width" />
<link rel="stylesheet" href="http://yandex.st/highlightjs/7.3/styles/solarized_dark.min.css" />
<style>
body {
margin: 0 auto;
margin-top: 120px;
padding: 0 20px;
max-width: 1024px;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
background-color: #eee;
color: #444;
}
h1 {
position: absolute;
top: 0;
left: 0;
width: 100%;
margin: 0;
padding: 30px 0;
background-color: white;
font-weight: normal;
text-align: center;
z-index: -1;
}
h2 {
padding-bottom: 4px;
border-bottom: solid 1px;
}
a {
color: #08c;
text-decoration: none;
}
ul {
padding-left: 20px;
}
code {
overflow-x: auto;
}
</style>
</head>
<body>
<a href="https://github.com/loicfrering/backbone.handlebars"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_green_007200.png" alt="Fork me on GitHub"></a>
<%= content %>
</body>
</html>