forked from craftedpixelz/Shibui
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
54 lines (44 loc) · 1.56 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
<!doctype html>
<!--[if IE 7]><html class="no-js lt-ie9 lt-ie8"><![endif]-->
<!--[if IE 8]><html class="no-js lt-ie9"><![endif]-->
<!--[if gt IE 8]><!--><html class="no-js"><!--<![endif]-->
<head>
<meta charset="UTF-8">
<!-- TITLE -->
<title>Project Name</title>
<!-- META -->
<meta name="description" content="" />
<meta name="keywords" content="" />
<!-- STYLES -->
<link rel="stylesheet" href="resource/css/style.css" />
<!-- MODERNIZR -->
<script src="resource/js/libs/modernizr.min.js"></script>
</head>
<body>
<div id="container">
<!-- HEADER -->
<header id="header" role="banner">
<h1>Header</h1>
</header>
<!-- CONTENT -->
<div id="content" role="main">
<h2>Website Name</h2>
<p>Main content.</p>
<aside id="sidebar" role="complementary">
<h2>Sidebar Info</h2>
<p>Sidebar Content</p>
</aside>
</div>
<!-- FOOTER -->
<footer id="footer" role="contentinfo">
<p>© projectname.com / All Rights Reserved</p>
</footer>
</div>
<!-- SCRIPTS -->
<script src="http://code.jquery.com/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="resource/js/libs/jquery-1.8.3.min.js">\x3C/script>')</script>
<!--[if (gte IE 6)&(lte IE 8)]><script src="resource/js/libs/selectivizr.min.js"></script><![endif]-->
<script src="resource/js/plugins.js"></script>
<script src="resource/js/global.js"></script>
</body>
</html>