-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
65 lines (62 loc) · 1.79 KB
/
index.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
59
60
61
62
63
64
65
<!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">
<title>Axe / Not Axe</title>
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" type="text/css">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" type="text/css">
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Metamorphous|Vollkorn:400,400italic,700,700italic" type="text/css">
<style>
body, code {
font-family: 'Vollkorn', serif !important;
font-size: 16px;
}
#axe {
position:relative;
}
#axe:before {
content: url(img/axe.png);
position: absolute;
top: 0;
left: 0;
opacity: .1;
z-index: -1;
}
@media (min-width: 768px) {
.container {
max-width: 730px;
}
}
.footer {
padding-top: 19px;
color: #777;
border-top: 1px solid #e5e5e5;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Metamorphous', cursive;
}
</style>
</head>
<body>
<div id="axe"></div>
<div class="container">
<div class="header">
<ul class="nav nav-pills pull-right">
<li><a href="?lang=en">English</a></li>
<li><a href="?lang=fr">Français</a></li>
</ul>
</div>
<div id="content"></div>
<div class="footer">
<p>This RPG is the work of <a href="http://jehaisleprintemps.net">Bruno Bord</a>.
<a href="https://github.com/brunobord/axe-not-axe">Fork it away</a>, it's Public Domain.</p>
</div>
</div>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/marked/0.3.6/marked.min.js"></script>
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="js/app.js"></script>
</body>
</html>