-
Notifications
You must be signed in to change notification settings - Fork 22
/
index.html
executable file
·64 lines (52 loc) · 1.95 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
<!DOCTYPE html>
<!--[if lt IE 7 ]> <html class="no-js ie6" lang="en"> <![endif]-->
<!--[if IE 7 ]> <html class="no-js ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]> <html class="no-js ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>My Portfolio | John Neiner</title>
<meta name="description" content="A sample site for use during the presentation: jQuery Nuts, Bolts and Bling">
<meta name="author" content="Doug Neiner">
<link rel="stylesheet" href="css/style.css">
<!-- Remember, Modernizr takes care of our no-js to js class swap -->
<script src="js/libs/modernizr-1.7.min.js"></script>
</head>
<body>
<div id="container">
<header>
<h1>John Neiner</h1>
<p>Check out some of my Dribbble shots:</p>
</header>
<ul id="dribbble-shots" class="portfolio">
</ul>
<footer>
<p>Sample site for jQuery Nuts, Bolts and Bling. By <a href="http://twitter.com/dougneiner">Doug Neiner</a></p>
</footer>
</div> <!-- eo #container -->
<!-- Our template for each shot -->
<script id="shot-template" type="text/html">
<li>
<a href="${url}"><img src="${image_teaser_url}" alt="" /></a>
<div class="portfolio-info-panel">
<h2>${title}</h2>
<p><a href="${short_url}">${short_url}</a></p>
</div>
</li>
</script>
<!-- jQuery -->
<script src="js/libs/jquery-1.6.2.js"></script>
<!-- Our templating library -->
<script src="js/libs/jquery.tmpl.js"></script>
<!-- The doTimeout Plugin -->
<script src="js/libs/jquery.ba-dotimeout.js"></script>
<!-- You should be able to remove the following three lines in production
and everything should still work -->
<script src="js/libs/jquery.mockjax.js"></script>
<script src="mocks/johnneiner.js"></script>
<script src="mocks/mocks.js"></script>
<!-- Our primary script file -->
<script src="js/script.js"></script>
</body>
</html>