-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcategories.html
82 lines (76 loc) · 2.22 KB
/
categories.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>CodeMash</title>
<meta name="description" content="CodeMash scheduling tool">
<meta name="author" content="Josh Graber">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.min.css">
<link rel="stylesheet" href="assets/css/main.css">
<link rel="stylesheet" href="assets/css/header.css">
<link rel="stylesheet" href="assets/css/footer.css">
<link rel="stylesheet" href="assets/css/event.css">
</head>
<body class="site">
<header>
<a class="brand" href="http://www.codemash.org">
<img src="/assets/images/codemash-icon.png" height="50"/>
</a>
<nav>
<div class="main">
<a href="/">CodeMash</a>
</div>
<ul>
<li><a href="/">Schedule</a></li>
<li><a href="/events">Events</a></li>
<li><a href="/presenters">Presenters</a></li>
<li class="active"><a href="/categories">Categories</a></li>
</ul>
<button class="navigator">
<i class="fa fa-navicon"></i>
<i class="fa fa-caret-down"></i>
</button>
</nav>
<div class="profile">
<div class="menu">
<div class="pic"></div>
<i class="drop-down fa fa-caret-down"></i>
</div>
<div class="schedule">
<a href="/user/schedule"><i class="fa fa-calendar"></i></a>
</div>
</div>
</header>
<div class="content">
<main>
<section>
<h1>Categories</h1>
<div class="search">
<input type="text" placeholder="Search"/>
<button><i class="fa fa-search"></i></button>
</div>
<ul>
<li class="category">
<h3><a href="/categories_1">Front-end</a></h3>
<p>Web application user interfaces.</p>
</li>
<li class="category">
<h3><a href="/categories/2">JavaScript</a></h3>
<p>Sessions related to writing JavaScript.</p>
</li>
</ul>
</section>
</main>
<footer>
<div class="copyright">
<span>Copyright © 2016</span>
<span>All rights reserved</span>
</div>
<div class="top">
<i class="fa fa-arrow-up"></i>
</div>
</footer>
</div>
</body>
</html>