-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevents.html
114 lines (108 loc) · 4.64 KB
/
events.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
106
107
108
109
110
111
112
113
114
<!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 class="active"><a href="/events">Events</a></li>
<li><a href="/presenters">Presenters</a></li>
<li><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>Events</h1>
<div class="search">
<input type="text" placeholder="Search"/>
<button><i class="fa fa-search"></i></button>
</div>
<ul class="events">
<li class="event">
<h3>4 Times Richer: Part 1</h3>
<h4>Tuesday, Jan 10th, 8:00am - 12:00pm</h4>
<h4><a href="/presenters_1">Josh Graber</a></h4>
<ul class="category-tags">
<li><a href="/categories_1">Front end</a></li>
<li><a href="/categories/2">Javascript</a></li>
</ul>
<p>The JavaScript ecosystem has exploded in the last few years, resulting in the popular hashtag:
#JavaScriptFatigue. In this workshop we take a whirlwind tour of 4 popular web application frameworks. You
will walk away understanding the strengths and weaknesses of each approach and equipped to select and focus
on
the best tool for your project. We will provide hands-on experience with: * Angular 2: Powerful, standards
driven, all inclusive * ReactJS: Pluggable, functionally reactive * Aurelia: Convention over configuration,
simple, effective * Elm: Functional, unique As we work with each framework, we will examine its unique
methodology and ecosystem. We will discuss the strengths and weaknesses without advocating a “best”
framework.
We will get our hands dirty building real code with plenty of examples, demonstrations, and working
applications on GitHub for reference.</p>
</li>
<li class="event">
<h3>4 Times Richer: Part 1</h3>
<h4>Tuesday, Jan 10th, 8:00am - 12:00pm</h4>
<h4><a href="/presenters_1">Josh Graber</a></h4>
<ul class="category-tags">
<li><a href="/categories_1">Front end</a></li>
<li><a href="/categories/2">Javascript</a></li>
</ul>
<p>The JavaScript ecosystem has exploded in the last few years, resulting in the popular hashtag:
#JavaScriptFatigue. In this workshop we take a whirlwind tour of 4 popular web application frameworks. You
will walk away understanding the strengths and weaknesses of each approach and equipped to select and focus
on
the best tool for your project. We will provide hands-on experience with: * Angular 2: Powerful, standards
driven, all inclusive * ReactJS: Pluggable, functionally reactive * Aurelia: Convention over configuration,
simple, effective * Elm: Functional, unique As we work with each framework, we will examine its unique
methodology and ecosystem. We will discuss the strengths and weaknesses without advocating a “best”
framework.
We will get our hands dirty building real code with plenty of examples, demonstrations, and working
applications on GitHub for reference.</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>