-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
103 lines (83 loc) · 2.98 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Blankplate | Yet another HTML5/CSS3 Starter Kit</title>
<meta name="description" content="">
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- FONTS -->
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Open+Sans:400,600&subset=latin,greek">
<!-- STYLES -->
<link rel="stylesheet" type="text/css" href="styles/reset.css">
<link rel="stylesheet" type="text/css" href="styles/typography.css">
<link rel="stylesheet" type="text/css" href="styles/helpers.css">
<link rel="stylesheet" type="text/css" href="styles/inputs.css">
<link rel="stylesheet" type="text/css" href="styles/buttons.css">
<link rel="stylesheet" type="text/css" href="styles/base64.css">
<link rel="stylesheet" type="text/css" href="styles/snippets.css">
<link rel="stylesheet" type="text/css" href="styles/styles.css">
<link rel="stylesheet" type="text/css" href="styles/media.css">
<link rel="stylesheet" type="text/css" href="styles/diagnostics.css">
<!--[if lte IE 8]>
<script src="js/vendor/css3-mediaqueries.js"></script>
<script src="js/vendor/selectivizr-min.js"></script>
<![endif]-->
<!-- GOOGLE ANALYTICS -->
<script src="js/ga.js"></script>
<!-- GOOGLE ANALYTICS ends -->
</head>
<!--[if lt IE 7]> <body class="ie ie6 lte9 lte8 lte7"> <![endif]-->
<!--[if IE 7]> <body class="ie ie7 lte9 lte8 lte7"> <![endif]-->
<!--[if IE 8]> <body class="ie ie8 lte9 lte8"> <![endif]-->
<!--[if IE 9]> <body class="ie ie9 lte9"> <![endif]-->
<!--[if gt IE 9]> <body class="ie"> <![endif]-->
<!--[if !IE]><!--> <body> <!--<![endif]-->
<div id="wrapper">
<!-- HEADER -->
<header>
<nav>
<ul>
<li><h1>Blankplate</h1></li>
<li>This is a blank template. If you're looking for something more, check the <a href="demo.html"><b>demo</b></a> page.</li>
</ul>
</nav>
</header>
<!-- HEADER ends -->
<!-- MAIN CONTAINER -->
<div id="body_wrapper">
<!-- SIDE BAR -->
<aside></aside>
<!-- SIDE BAR ends -->
<!-- CONTENT -->
<section id="body" role="main">
<!-- CONTENT BLOCK -->
<article></article>
<!-- CONTENT BLOCK ends -->
</section>
<!-- CONTENT ends-->
</div>
<!-- MAIN CONTAINER ends -->
<!-- FOOTER -->
<footer>
<!-- FOOTER CONTAINER-->
<div class="footer_wrapper"></div>
<!-- FOOTER CONTAINER ends -->
<!-- SUBFOOTER CONTAINER -->
<div class="sub_footer_wrapper">
<div class="credits"><a href="#"></a></div>
</div>
<!-- SUBFOOTER CONTAINER ends -->
</footer>
<!-- FOOTER ends -->
</div>
<!-- JQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/vendor/jquery-1.8.3.min.js"><\/script>')</script>
<!-- JS -->
<script src="js/plugins.js"></script>
<script src="js/initializers.js"></script>
<!-- JS ends -->
</body>
</html>