-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·64 lines (49 loc) · 2.12 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>
<!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ -->
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
<!-- Consider adding a manifest.appcache: h5bp.com/d/Offline -->
<!--[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>Title</title>
<!-- Mobile viewport optimized: h5bp.com/viewport -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/style.css">
<script src="js/modernizr.js"></script>
<script>
Modernizr.load({
test: Modernizr.input.placeholder,
nope: 'js/placeholder.js'
});
</script>
</head>
<body>
<div id="container">
<h1>Thanks for downloading Base</h1>
<div class="halvsies grid">
<div class="unit">
<p>Make sure to <a href="https://github.com/davidfitzgibbon/base/blob/master/README.markdown">read the docs</a> and feel free to <a href="https://github.com/davidfitzgibbon/base/issues">log any issues you may have</a>.</p>
</div>
<div class="unit">
<p>Want to hide the mediaqueries and grid mediaqueries helpers?<p>
<p>Just go to sass/_includes.sass and remove/comment the '@import "show_mqs"' and '@import "show_grid"' lines.</p>
</div>
</div>
</div><!-- / container -->
<!-- scripts concatenated and minified via build script -->
<script src="js/jquery.js"></script>
<script src="js/script.js"></script>
<!--[if (gte IE 6)&(lte IE 8)]>
<script type="text/javascript" src="js/selectivizr.js"></script>
<noscript><link rel="stylesheet" href="[fallback css]" /></noscript>
<![endif]-->
<!-- Prompt IE 6 users to install Chrome Frame -->
<!--[if lt IE 7 ]>
<script defer src="//ajax.googleapis.com/ajax/libs/chrome-frame/1.0.3/CFInstall.min.js"></script>
<script defer>window.attachEvent('onload',function(){CFInstall.check({mode:'overlay'})})</script>
<![endif]-->
</body>
</html>