-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.html
91 lines (51 loc) · 1.96 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
<!DOCTYPE html>
<html>
<head lang="en">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta charset="utf-8">
<title>Single Page App Without A Framework</title>
<link href="http://fonts.googleapis.com/css?family=Open+Sans:400" rel="stylesheet">
<link href="assets/css/styles.css" rel="stylesheet">
</head>
<body>
<header class="compact">
<h1><a href="#">Virtual CodeHub</a></h1>
</header>
<div id="main-content">
<div id="all-profiles" class="page visible">
<div class="filters">
<form>
<div class="filter-criteria">
<span>JavaScript</span>
<label><input type="checkbox" name="JavaScript interests" value="SPA">Single Page Applications</label>
<label><input type="checkbox" name="JavaScript interests" value="D3JS">D3JS</label>
<label><input type="checkbox" name="JavaScript interests" value="Backbone">Backbone</label>
<label><input type="checkbox" name="JavaScript interests" value="Angular">Angular</label>
<label><input type="checkbox" name="JavaScript interests" value="jQuery">jQuery</label>
<label><input type="checkbox" name="JavaScript interests" value="Maps">Maps</label>
<label><input type="checkbox" name="JavaScript interests" value="ReactJS">ReactJS</label>
<label><input type="checkbox" name="JavaScript interests" value="NodeJS">NodeJS</label>
<label><input type="checkbox" name="JavaScript interests" value="ThreeJS">ThreeJS</label>
</div>
<button id="filters">Clear filters</button>
</form>
</div>
<ul id="profiles" class="profiles-list">
</ul>
</div>
<div id="single-profile" class="page">
<div class="overlay"></div>
<div id="preview-large">
<h3>Single profile view</h3>
<img src=""/>
<p></p>
<span class="close">×</span>
</div>
</div>
<div class="error page">
<h3>Sorry, something went wrong :(</h3>
</div>
</div>
<script src="assets/js/script.js"></script>
</body>
</html>