-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
41 lines (33 loc) · 1.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Just Test It: Backbone.Controller and Karma + Mocha + Chai testing">
<meta name="author" content="Artyom Trityak">
<title>Just Test It</title>
<!-- Bootstrap core CSS -->
<link href="static/assets/css/bootstrap-3.0.css" rel="stylesheet">
<!-- Custom styles -->
<link href="static/assets/css/app.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="static/assets/js/html5shiv.js"></script>
<script src="static/assets/js/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- Wrap all page content here -->
<div id="wrap">
</div>
<div id="footer">
<div class="container">
<p class="text-muted credit">© Artyom Trityak</p>
</div>
</div>
<script type="text/javascript"
src="static/assets/js/require-2.1.8.js"
data-main="static/config.js"
></script>
</body>
</html>