-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (50 loc) · 2.11 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
<!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">
<title>Which Tool Do I Use</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="http://yui.yahooapis.com/pure/0.3.0/pure-min.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div class="pure-g-r" id="layout">
<div class="sidebar pure-u">
<header class="header">
<hgroup>
<h1 class="brand-title">Which Tool Do I Use?</h1>
<h2 class="brand-tagline">use<br>share<br>collaborate</h2>
</hgroup>
<nav class="nav">
<ul class="nav-list">
<li class="nav-item">
<a class="pure-button"
href="https://github.com/williamespindola/which-tool-do-i-use">Fork me on Github</a>
</li>
</ul>
</nav>
</header>
</div>
<main class="pure-u-1">
<input type="text"
name="find"
value=""
placeholder="find a project! ex:grid, framework"
class="search"
id="search">
<div class="content">
<section class="posts">
<h1 class="content-subhead" id="look"></h1>
<div id="projects"></div>
</section>
</div>
</main>
</div>
<script data-main="js/main" src="js/lib/requirejs/require.js"></script>
</body>
</html>