forked from nowaym/groundwork
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
122 lines (117 loc) · 4.35 KB
/
home.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!doctype html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1">
<title>Groundwork CSS ♥ Say Hello to Responsive Design Made Easy</title>
<!-- Modernizr -->
<script src="./js/libs/modernizr-2.6.2.min.js"></script>
<!-- jQuery -->
<script type="text/javascript" src="./js/libs/jquery-1.8.2.min.js"></script>
<!-- Groundwork CSS -->
<link type="text/css" rel="stylesheet" href="./css/groundwork.css">
<!--[if IE]>
<link type="text/css" rel="stylesheet" href="./css/groundwork-ie.css">
<![endif]-->
<!--[if lt IE 9]>
<script type="text/javascript" src="./js/libs/html5shiv.min.js"></script>
<![endif]-->
<!--[if IE 7]>
<link type="text/css" rel="stylesheet" href="./css/font-awesome-ie7.min.css">
<![endif]-->
<script type="text/javascript">
// fallback if SVG unsupported
Modernizr.load({
test: Modernizr.svg,
nope: './css/no-svg.css'
});
// polyfill for HTML5 placeholders
Modernizr.load({
test: Modernizr.input.placeholder,
nope: [
'./css/placeholder_polyfill.css',
'./js/libs/placeholder_polyfill.jquery.js'
]
});
</script>
</head>
<body>
<header class="white band padded">
<div class="container">
<h2>We've Taken Care of the Groundwork</h2>
<nav class="inline gap-top">
<ul>
<li><a href="./home.html"><i class="icon-home"></i></a></li>
<li><a href="./layout-1.html">Layout 1</a></li>
<li><a href="./layout-2.html">Layout 2</a></li>
<li><a href="./layout-3.html">Layout 3</a></li>
<li><a href="./layout-4.html">Layout 4</a></li>
<li><a href="./layout-5.html">Layout 5</a></li>
<li><a href="./kitchen-sink.html">Components</a></li>
</ul>
</nav>
</div>
</header>
<div class="container">
<h4>Responsive Templates To Get You Going</h4>
<div class="row">
<div class="one small-tablet third padded">
<div class="callout">
<h6>Layout Example 1</h6>
<a href="./layout-1.html"><img src="./images/layout-1.gif" alt="" /></a>
</div>
</div>
<div class="one small-tablet third padded">
<div class="callout">
<h6>Layout Example 2</h6>
<a href="./layout-2.html"><img src="./images/layout-2.gif" alt="" /></a>
</div>
</div>
<div class="one small-tablet third padded">
<div class="callout">
<h6>Layout Example 3</h6>
<a href="./layout-3.html"><img src="./images/layout-3.gif" alt="" /></a>
</div>
</div>
</div>
<div class="row">
<div class="one small-tablet third padded">
<div class="callout">
<h6>Layout Example 4</h6>
<a href="./layout-4.html"><img src="./images/layout-4.gif" alt="" /></a>
</div>
</div>
<div class="one small-tablet third padded">
<div class="callout">
<h6>Layout Example 5</h6>
<a href="./layout-5.html"><img src="./images/layout-5.gif" alt="" /></a>
</div>
</div>
<div class="one small-tablet third padded">
<div class="success callout">
<h6>Components</h6>
<a href="./kitchen-sink.html"><img src="./images/kitchen-sink.gif" alt="" /></a>
</div>
</div>
</div>
</div>
<!-- scripts -->
<script type="text/javascript" src="./js/plugins/jquery.orbit-1.4.0.js"></script>
<script type="text/javascript" src="./js/groundwork.js"></script>
<!-- google analytics -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-XXXXXXXX-X']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>