-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
180 lines (164 loc) · 5.33 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
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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
<!DOCTYPE html>
<html>
<head>
<title></title>
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.css">
<script src="rv-util.js"></script>
</head>
<body class="homepage">
<header class="pageHeader">
<canvas id="logo"></canvas>
<nav>
<ul>
<li><a href="#">Events</a></li>
<li><a href="#">Resources</a></li>
<li><a href="#">Members</a></li>
</ul>
</nav>
</header>
<section class="pageContent">
<section class="events">
<div class="nextEvent">
<h2>Next Event</h2>
<article class="event">
<header>
<h3>Git + Terminal Workshop with Github</h3>
</header>
<div class="content">
<div class="what">
<h4>What</h4>
<p>
Github is visiting and giving us a workshop on how to use GitHub! Prefaced by a lecture on how to use the Terminal in Mac OS X.
</p>
</div>
<div class="when">
<h4>When</h4>
<p>
Sunday, September 7th 2013<br/>
14:00-19:00
</p>
</div>
<div class="where">
<h4>Where</h4>
<p>
66 W. 13th St. Room 2100
</p>
</div>
<div class="facebook">
<a href="#" class="more">View on Facebook</a>
</div>
<div class="tags">
<a href="#" class="tag">git</a>
<a href="#" class="tag">github</a>
<a href="#" class="tag">terminal</a>
</div>
</div>
</article>
</div>
<div class="weeklyMeetup">
<h2>Weekly Meetup</h2>
<article class="event">
<header>
<h3>Get help with code!</h3>
</header>
<div class="content">
<div class="what">
<h4>What</h4>
<p>
Get help from mentors, eat pizza.
</p>
</div>
<div class="when">
<h4>When</h4>
<p>
Every Friday at 16:00
</p>
</div>
<div class="where">
<h4>Where</h4>
<p>
66 W. 13th St. Room 2100
</p>
</div>
</div>
</article>
</div>
</section> <!-- end of events -->
<section class="learn">
<h2>Learn Stuff</h2>
<div class="tagResource">
<article class="resourceList">
<h4>
<a href="#" class="tag">html</a>
</h4>
<div class="content">
<div class="resource">
<a href="#" class="title">A Beginner's Guide to HTML & CSS</a>
<p class="excerpt">Blah blah blah some text about why Shay Howe's guide is so good.</p>
</div>
<div class="resource">
<a href="#" class="title">A Beginner's Guide to HTML & CSS</a>
<p class="excerpt">Blah blah blah some text about why Shay Howe's guide is so good.</p>
</div>
</div>
</article>
</div>
<div class="tagResource">
<article class="resourceList">
<h4>
<a href="#" class="tag">css</a>
</h4>
<div class="content">
<div class="resource">
<a href="#" class="title">A Beginner's Guide to HTML & CSS</a>
<p class="excerpt">Blah blah blah some text about why Shay Howe's guide is so good.</p>
</div>
<div class="resource">
<a href="#" class="title">A Beginner's Guide to HTML & CSS</a>
<p class="excerpt">Blah blah blah some text about why Shay Howe's guide is so good.</p>
</div>
</div>
</article>
</div>
<div class="tagResource">
<article class="resourceList">
<h4>
<a href="#" class="tag">javascript</a>
</h4>
<div class="content">
<div class="resource">
<a href="#" class="title">A Beginner's Guide to HTML & CSS</a>
<p class="excerpt">Blah blah blah some text about why Shay Howe's guide is so good.</p>
</div>
<div class="resource">
<a href="#" class="title">A Beginner's Guide to HTML & CSS</a>
<p class="excerpt">Blah blah blah some text about why Shay Howe's guide is so good.</p>
</div>
</div>
</article>
</div>
</section>
<section class="instagram">
<h2>Check Us Out</h2>
<div class="images">
<a href=""><img src="instagram.jpg" alt=""></a>
<a href=""><img src="instagram.jpg" alt=""></a>
<a href=""><img src="instagram.jpg" alt=""></a>
<a href=""><img src="instagram.jpg" alt=""></a>
<a href=""><img src="instagram.jpg" alt=""></a>
<a href=""><img src="instagram.jpg" alt=""></a>
</div>
</section>
</section> <!-- end of contents -->
<footer>
<section class="partners">
</section>
<section class="contact">
</section>
</footer>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="requestAnimationFrame-polyfill.js"></script>
<script src="script.js"></script>
</body>
</html>