-
Notifications
You must be signed in to change notification settings - Fork 12
/
index.html
executable file
·78 lines (61 loc) · 2.1 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
<!doctype html>
<!--[if lt IE 7 ]> <html lang="en" class="no-js ie6"> <![endif]-->
<!--[if IE 7 ]> <html lang="en" class="no-js ie7"> <![endif]-->
<!--[if IE 8 ]> <html lang="en" class="no-js ie8"> <![endif]-->
<!--[if IE 9 ]> <html lang="en" class="no-js ie9"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--> <html lang="en" class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Framework</title>
<meta name="description" content="">
<link type="text/plain" rel="author" href="humans.txt">
<link rel="shortcut icon" href="favicon.png">
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="fancybox/jquery.fancybox.css">
<script src="js/libs/modernizr.min.js"></script>
</head>
<body>
<!-- wrapper -->
<div class="container">
<!-- header -->
<header class="header">
</header>
<!-- header -->
<!-- main -->
<div class="layout-left">
<!-- content -->
<section class="main">
</section>
<!-- content -->
<!-- sidebar -->
<aside class="sidebar">
</aside>
<!-- sidebar -->
</div>
<!-- main -->
<!-- footer -->
<footer class="footer">
</footer>
<!-- footer -->
</div>
<!-- wrapper -->
<p id="jquery-test" class="info">jQuery is not loaded (http://localhost/ needed)</p>
<!-- scripts -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.js"></script>
<script>window.jQuery || document.write('<script src="js/libs/jquery.min.js"><\/script>')</script>
<script src="js/plugins/jquery.cookie.js"></script>
<script src="js/plugins/jquery.easytabs.js"></script>
<script src="fancybox/jquery.fancybox.pack.js"></script>
<script src="js/script.js"></script>
<!-- end scripts-->
<script>
var _gaq=[['_setAccount','UA-XXXXX-X'],['_trackPageview']];
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
g.src=('https:'==location.protocol?'//ssl':'//www')+'.google-analytics.com/ga.js';
s.parentNode.insertBefore(g,s)}(document,'script'));
</script>
</body>
</html>