-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
84 lines (65 loc) · 2.68 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
<!doctype html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Ajax Playground</title>
<meta name="description" content="">
<meta name="keywords" content="">
<meta name="author" content="João Sardinha, http://johnsardine.com/">
<link rel="shortcut icon" href="assets/favicon.ico" />
<link rel="stylesheet" href="style.css">
<script src="assets/modernizr.js"></script>
</head>
<body>
<!-- Freebie Header -->
<header id="header">
<div>
<a href="" title="Ajax Playground" id="logo">Ajax Playground</a>
<nav>
<ul>
<li><a href="#demo" title="Demo" data-title="Demooeoeo">Demo</a></li>
<li><a href="#source" title="View Source" data-title="Grab The Source Code">Source</a></li>
<li><a href="#download" title="Download" data-title="Download The File">Download</a></li>
<li><a href="#steps" title="Steps" data-title="Steps/Instructions">Steps</a></li>
<li><a href="#form" title="Forms Using Chosen">Form</a></li>
<li><a href="#media-block" title="Media Block">Media Block</a></li>
<li><a href="#about" title="About">About</a></li>
</ul>
</nav>
</div>
</header>
<!-- Freebie Header -->
<div class="inside">
<div id="debug"></div>
<div id="target">
<div class="error no-js"><p>You have JavaScript disabled, please enable it in order to view this site.</p></div>
</div>
<footer id="footer">
<p>© 2011 <a href="http://johnsardine.com/?ref=lab" target="_blank" title="Visit JohnSardine">JohnSardine</a></p>
</footer>
</div>
<!-- end .inside -->
<!-- IE Only Alert -->
<div id="ie-notice" class="modal">
<h2>Wait a minute…</h2>
<p>You shouldn't be using that outdated browser, you are missing many good things from the web.</p>
<p>Please visit <a href="http://browsehappy.com/" title="Visit Browse Happy" target="_blank">Browse Happy</a> and choose one of the available browsers in order to improve your experience on the web.</p>
<a href="#" title="" class="close">close</a>
</div>
<div class="overlay"></div>
<!-- IE Only Alert -->
<!-- Load Scripts -->
<!--
<script src="assets/jquery.js" type="text/javascript"></script>
<script src="assets/jquery.history.js"></script>
<script src="assets/jquery.cookie.js"></script>
<script src="assets/prettify/prettify.js"></script>
<script src="assets/script.js"></script>
-->
<script src="assets/script.min.js"></script>
</body>
</html>