-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
157 lines (136 loc) · 3.67 KB
/
index.html
File metadata and controls
157 lines (136 loc) · 3.67 KB
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<!--[if (IE 6)|(IE 7)]>
<!--
Source page and blueprint.
'top' is forward thinking but backwards compatible, meaning that
the basic layout structure of the site will display nicely
right down to IE 6, but that's it. Beautiful things happen at
IE 9.
The first thing is that we've triggered box-sizing:border-box
throughout the entirety of the site. In order to keep it compatible (IE)
content has to be added before the doctype. You can read more
about what that means http://www.quirksmode.org/css/quirksmode.html
-->
<![endif]-->
<!DOCTYPE html>
<!--[if lt IE 7 ]><html class="ie6" lang="en"><![endif]-->
<!--[if IE 7 ]><html class="ie7" lang="en"><![endif]-->
<!--[if IE 8 ]><html class="ie8" lang="en"><![endif]-->
<!--[if (gte IE 9)|!(IE)]><!--><html class="no-js" lang="en"><!--<![endif]-->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>top: A lightweight framework to build amazing Web Applications and Websites</title>
<link rel="stylesheet" href="dist/top.css">
<style>
/* Body type might be added to top later */
body {
color:#444;
}
h1, h2, h3, dt, label {
color:#111;
}
a {
color:#44F;
}
/* Layout */
.r {
margin: 0 auto;
max-width: 960px;
}
.ie6 .r, .ie7 .r {
width:960px;
}
.r > div {
padding:0 10px;
}
.r .head h1 {
text-align: center;
font-size: 80px;
line-height: 100px;
}
.r .body {
padding-top:100px;
}
</style>
</head>
<body>
<div class="r body">
<div class="c3">
<div class="head">
<h1>top</h1>
<nav>
<ul>
<li><a href="#form">Foundation</a></li>
<li><a href="#lists">Typography</a></li>
<li><a href="#other">Forms & Buttons</a></li>
</ul>
</nav>
</div>
</div>
<div class="c9 body">
<h1>What top is</h1>
<p>A complete HTML5 <a href="http://developers.google.com/speed/pagespeed/insights/?url=top.kamris.com">high performance</a> front-end for developing todays websites compatible with yesterdays devices.</p>
<h2>Features</h2>
<ul>
<li>
High Performance
<ul>
<li>Tiny footprint.</li>
<li>Immediate paint-times.</li>
<li>Non-blocking CSS & Javascript.</li>
<li>jQuery Plugins onDemand</li>
</ul>
</li>
<li>
Tiered Compatibility
<ul>
<li>Tier 0: IE6/7 will render layout.</li>
<li>Tier 1: IE8 will render layout as well as additional CSS. </li>
<li>Tier 2: IE9+ and other modern browsers get the full experience.</li>
</ul>
</li>
<li>
Common Components
<ul>
<li>jQuery 1.* with a set of plugins loaded only when needed</li>
<li>normalise.css 4.x</li>
<li>FontAwesome for iconography</li>
</ul>
</li>
</ul>
</div>
</div>
</body>
</html>
<!--[if (!IE)|(gte IE 8)]><!-->
<noscript>
<!--
CSS goes here
It's a good idea to keep layout displayed at the top of
the page that can be rendered in a wide range of browsers.
For things like fancy backgrounds, that can go here.
-->
</noscript>
<script></script>
<script type="text/javascript">
(function() {
var noscript = document.getElementsByTagName('noscript');
if(noscript.length > 0) {
noscript = noscript[noscript.length-1].innerHTML;
var css = noscript.match(/[a-zA-Z0-9\/\?\.]+\.css/g);
if(css!==null) {
for (var i = 0; i < css.length; i++) {
var head = document.getElementsByTagName("head")[0];
var link = document.createElement('link');
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = css[i];
link.media = 'all';
head.appendChild(link);
}
}
}
})();
</script>
<!-- <![endif] -->
<!--[if lt IE 9]><script src="components/html5shiv/html5shiv.js"></script><![endif]-->