-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (26 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
<!DOCTYPE html>
<html lang="en" id="site" class="nojs">
<head>
<title>Tangent House Styles NKD</title>
<meta charset="utf-8" />
<meta name="viewport" content="initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="static/dist/css/styles.min.css"/>
<script>
/* we want to remove the nojs class as soon as possible on page load */
document.getElementById("site").className = document.getElementById("site").className.replace(/nojs/i,'');
</script>
</head>
<body>
<div class="container">
<h1>You're good to go!</h1>
<p>If you're seeing this and running gulp, your server should be running on localhost:3000</p>
</div>
<!-- Grab Google-hosted jQuery. Fall back to locally saved file if necessary. -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="static/js/vendor/jquery-1.10.2.min.js">\x3C/script>')</script>
<!--[if lt IE 9 ]>
<script>(function() {$('body').addClass('iex');})();</script>
<![endif]-->
<script src="static/dist/js/main.min.js"></script>
</body>
</html>