-
Notifications
You must be signed in to change notification settings - Fork 308
/
index.html
105 lines (100 loc) · 4.19 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!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 ♥</title>
<!-- Modernizr -->
<script src="js/libs/modernizr-2.6.2.min.js"></script>
<!-- jQuery -->
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script type="text/javascript">window.jQuery || document.write('<script src="./js/libs/jquery-1.8.2.min.js"><\/script>')</script>
<!-- Groundwork CSS -->
<link type="text/css" rel="stylesheet" href="./css/groundwork.min.css">
<!--[if lt IE 9]>
<script type="text/javascript" src="./js/libs/html5shiv.min.js"></script>
<link type="text/css" rel="stylesheet" href="./css/groundwork-ie.min.css">
<![endif]-->
<!--[if IE 7]>
<link type="text/css" rel="stylesheet" href="./css/font-awesome-ie7.min.css">
<![endif]-->
</head>
<body>
<header class="white band padded">
<div class="container">
<div class="row">
<div class="one half">
<h1 class="big responsive heading" data-scale="6.95" data-min="20" data-max="120" style="font-size:86px;"><a href="./index.html"><span class="logo"></span> Groundwork<sup>Beta</sup></a></h1>
</div>
<div class="one half double pad-top">
<nav class="inline pull-right gap-top">
<ul>
<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>
</ul>
</nav>
</div>
</div>
</div>
</header>
<div class="container">
<h2>We've Taken Care of the Groundwork</h2>
<h4>Responsive Templates To Get You Going</h4>
<div class="row">
<div class="one small-tablet third padded">
<div class="callout">
<a href="./layout-1.html"><img src="./images/layout-1.gif" /></a>
</div>
</div>
<div class="one small-tablet third padded">
<div class="callout">
<a href="./layout-2.html"><img src="./images/layout-2.gif" /></a>
</div>
</div>
<div class="one small-tablet third padded">
<div class="callout">
<a href="./layout-3.html"><img src="./images/layout-3.gif" /></a>
</div>
</div>
</div>
<div class="row">
<div class="one small-tablet third padded">
<div class="callout">
<a href="./layout-4.html"><img src="./images/layout-4.gif" /></a>
</div>
</div>
<div class="one small-tablet third padded">
<div class="callout">
<a href="./layout-5.html"><img src="./images/layout-5.gif" /></a>
</div>
</div>
<div class="one small-tablet third padded">
<a href="https://github.com/groundworkcss/groundwork" style="text-decoration:none;display:block;" class="callout align-center">
<h1 class="responsive" data-scale="1.25" data-min="10" data-max="500"><i class="icon-github"></i></h1>
</a>
</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-17121602-5']);
_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>