-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
139 lines (116 loc) · 4.37 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
<!DOCTYPE html>
<html>
<head>
<title>RVA.js</title>
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1">
<link rel="stylesheet" type="text/css" href="css/app.css" />
</head>
<body>
<section class="nav">
<div class="inner">
<div class="nav-item">Meetings</div>
<div class="nav-item"><a href="archives.html">Archives</a></div>
</div>
</section>
<section>
<div class="logo">
<img src="img/[email protected]"><canvas></canvas>
</div>
<p>
Interested in <strong>JavaScript</strong>? Join us to learn
all about it. RVA.js serves as a hub for all things
JavaScript: browsers, node.js, libraries, canvas, etc. Come to
learn and code.
</p>
<p>
Meetings are on the first Tuesday of each month.
</p>
</section>
<section class="meeting">
<div class="inner" data-bind="with:nextMeetup">
<h1>Next Meeting</h1>
<div class="meetingDetails">
<div class="info">
<h3 data-bind="text:name"></h3>
<span data-bind="text:detailedDateTime"></span>
</div>
<div data-bind="html:description"></div>
</div>
<p>
Dinner will be provided.
</p>
<p>
Please <a data-bind="attr: {href: event_url}">RSVP on Meetup</a>.
Follow us on <a href="https://twitter.com/rvajs">twitter</a>
</p>
<p class="follow">
<a href="https://twitter.com/rvajs" class="twitter-follow-button" data-show-count="true" data-size="large">Follow @rvajs</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
</p>
</div>
</section>
<section class="details">
<h1>Venue</h1>
<div class="left">
We meet at <a class="name" href="http://www.frontierprojectspaces.com/">The Frontier Project</a>, in The Academy which is identifiable with the functioning glass garage doors. There are over 60 parking spaces at their building with additional street parking.
<div class="map">
<p>
<a href="https://www.google.com/maps/place/The+Frontier+Project">
<div>3005 W Marshall St</div>
<div>Richmond, VA 23230</div>
<img src="img/map-eastcoast.png" />
</a>
</p>
</div>
</div>
<div class="right">
<img src="img/eastcoastfreight.png" />
</div>
</section>
<section class="upcoming-meetings">
<div class="inner">
<h1>Upcoming Meetings</h1>
<!-- ko foreach: subsequentMeetups -->
<div class="meetingDetails">
<div class="info">
<h3 data-bind="text:name"></h3>
<span data-bind="text:detailedDateTime"></span>
</div>
<div data-bind="html:description"></div>
</div>
<!-- /ko -->
</div>
</section>
<section class="sponsors">
<h1>Sponsors</h1>
<div class="links">
<a href="http://www.recruitingconcepts.net/"><img src="img/rc-logo.png" /></a>
<a href="http://www.capitalone.com/"><img class="capitalone-logo" src="img/capitalone-logo.png" /></a>
</div>
</section>
<section class="contact">
<h1>Who's Behind This?</h1>
<div class="gkash">
<h3 class="header">Gaelen Kash</h3>
<img src="img/gkash.png" />
</div>
<div class="jlongster">
<h3><p>James Long</p></h3>
<img src="img/jlongster.jpg" />
</div>
<div class="codethug">
<h3>Tim Larson</h3>
<img src="img/codethug.jpg" />
</div>
</section>
<script data-main="js\app-Index" src="js/lib/require-2.1.20.min.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-44365217-1', 'rvajs.com');
ga('send', 'pageview');
</script>
</body>
</html>