-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
67 lines (48 loc) · 1.79 KB
/
index.php
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
66
67
<!doctype html class="no-js">
<head>
<title>Site Name</title>
<!-- meta -->
<meta charset="utf-8">
<meta name="robots" content="all">
<!-- css -->
<link rel="stylesheet" type="text/css" href="/build/styles/screen.css" media="screen" />
<!-- iphone -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!--[if lt IE 9]>
<link rel="stylesheet" type="text/css" href="/build/styles/screen-lt-ie9.css" media="screen" />
<![endif]-->
<!-- respond.js -->
<script src="build/js/respond.min.js"></script>
<!-- favicons and touch icons -->
<link href="favicons/apple-touch-icon-xlarge.png" rel="apple-touch-icon-precomposed" sizes="144x144" type="image/png" />
<link href="favicons/apple-touch-icon-large.png" rel="apple-touch-icon-precomposed" sizes="114x114" type="image/png" />
<link href="favicons/apple-touch-icon-medium.png" rel="apple-touch-icon-precomposed" sizes="72x72" type="image/png" />
<link href="favicons/apple-touch-icon-small.png" rel="apple-touch-icon-precomposed" type="image/png" />
<link href="favicons/apple-touch-icon-small.png" rel="shortcut icon" />
<link href="favicon.png" rel="shortcut icon" type="image/png" />
</head>
<body data-features="AnimatedScrolling OpenClose TapHover">
<header class="main-header">
<nav>
<ul>
<li><a href="#">Nav Item</a></li>
<li><a href="#">Nav Item</a></li>
<li><a href="#">Nav Item</a></li>
<li><a href="#">Nav Item</a></li>
</ul>
</nav>
</header>
<div id="main" class="main" role="main">
<section class="test">
<div class="mod mod1 pad">
<p>Module 1</p>
</div>
<div class="mod mod2 pad">
<p>Module 2</p>
</div>
</section>
</div> <!-- main -->
<!-- js -->
<script src="/build/js/main.min.js"></script>
</body>
</html>