forked from nodeschool/nodeschool.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevents.html
95 lines (90 loc) · 4.46 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
<!DOCTYPE html>
<html class="events">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="/mapbox.css">
<link rel="stylesheet" href="/style.css">
<link rel="stylesheet" href="/events.css">
<link rel="shortcut icon" href="/favicon.ico">
<link href="//fonts.googleapis.com/css?family=Source+Sans+Pro:400,700|Source+Code+Pro" rel="stylesheet" type="text/css">
<link rel='stylesheet prefetch' href='https://code.jquery.com/ui/1.12.1/themes/sunny/jquery-ui.css'>
<link rel="stylesheet" href="/styles/fullcalendar.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NodeSchool - Past and Future Events</title>
</head>
<body class="events">
<header>
<div class="container">
<div class="full">
<a href="index.html"><img class="logo" src="/images/schoolhouse.svg" alt="nodeschoolhouse"></a>
<ul class="nav">
<li><a href="index.html" data-i18n="menu-index">Home</a></li>
<li class="current-page"><a href="events.html" data-i18n="menu-events">Events</a></li>
<li><a href="chapters.html" data-i18n="menu-chapters">Chapters</a></li>
<li><a href="about.html" data-i18n="menu-about">About</a></li>
<li><a href="building-workshops.html" data-i18n="menu-building-workshops">Build</a></li>
<li><a href="host.html" data-i18n="menu-host">Host</a></li>
</ul>
</div>
</div>
</header>
<div id="main" name="main" role="main">
<div class="container workshops" style="background-color: #fff;">
<div class="full">
<h1 data-i18n="events-header">Past and Future NodeSchool Events</h1><br><br>
<div aria-hidden="true" id="map"></div>
<div class="key">
<span class="key-past" data-i18n="events-past">Past</span>
<span class="key-future" data-i18n="events-future">Future</span>
</div>
</div>
<br><br>
<div class="full">
<p data-i18n="events-header2">There have been <strong><span id="event-count">many</span></strong> events!</p>
<p data-i18n="events-header3">If you're organizing a NodeSchool event, add it to this site by filling out <a href="https://docs.google.com/forms/d/1vYW-Yw82kt_q7WDgBY6gQqFrg3zuD2rDPXEG-cbq7e4/viewform?usp=form_confirm" target="_blank" rel="noreferrer noopener">this form</a>.</p>
<small data-i18n="events-small">If you need to edit an event you've submitted, <a href="https://github.com/nodeschool/organizers/issues/new">file an issue on nodeschool/organizers.</a></small>
</div>
</div>
<div id="calendar">
<div class="container" style="background-color: #fff;">
<div class="full">
<h2 class="big-heading" data-i18n="calendar-h1">Calendar</h2>
<br><br>
<div id="eventCalendar"></div>
</div>
</div>
</div>
</div>
<div class="container" style="background-color: #fff;">
<footer>
<!-- content in footer.html added by build-html.js -->
</footer>
</div>
<script id="events" type="text/html">
<ul>
{{#rows}}
<li>{{startdate}} <a href="{{website}}">{{name}}</a></li>
{{/rows}}
<li><a href="events.html">See all events</a></li>
</ul>
</script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.12.0/moment.min.js"></script>
<script type="text/javascript" src="/js/tabletop.js"></script>
<script type="text/javascript" src="/js/sheetsee.js"></script>
<script type="text/javascript" src="/js/table.js"></script>
<script type="text/javascript" src="/js/main.js"></script>
<script type="text/javascript" src="/js/events.js"></script>
<script type="text/javascript" src="/js/dependencies.js"></script>
<script type="text/javascript" src="/js/fullcalendar.js"></script>
<script type="text/javascript" src="/js/eventCalendar.js"></script>
<script>
!function(s,c,h,O,o,l){s.GoogleAnalyticsObject=h;s[h]||(s[h]=function(){
(s[h].q=s[h].q||[]).push(arguments)});s[h].l=+new Date;o=c.createElement(O);
l=c.getElementsByTagName(O)[0];o.src='//www.google-analytics.com/analytics.js';
l.parentNode.insertBefore(o,l)}(window,document,'ga','script');
ga('create', 'UA-49267600-1', 'nodeschool.io');
ga('send', 'pageview');
</script>
</body>
</html>