-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
112 lines (93 loc) · 4.77 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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>Waterford Tech Meetup</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="/stylesheets/normalize.css" media="screen">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="/stylesheets/stylesheet.css" media="screen">
<link rel="stylesheet" type="text/css" href="/stylesheets/github-light.css" media="screen">
<meta property="og:type" content="website" />
<meta property="og:description" content="A Tech Meetup in Waterford City, Ireland" />
<link rel="icon" href="/images/favicon/favicon.ico">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="/images/favicon/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
</head>
<body>
<section class="page-header">
<img class="logo" alt="Waterford Tech Meetup" src="/images/logo-white.png"/>
<h2 class="project-tagline">A Tech Meetup in Waterford City</h2>
<p>
<a href="http://www.meetup.com/Waterford-Tech-Meetup/"><img src="/images/meetup.png" alt="http://www.meetup.com/Waterford-Tech-Meetup/" height="30px" /></a>
</p>
</section>
<section class="main-content">
<h3>Waterford Tech Meetup</h3>
<section id="next-meetup">
<h4>Our Next Event</h4>
<span id="meetup-time"></span><br>
<small><span id="meetup-venue"></span> | <span id="meetup-venue-address"></small><br>
<small><a id="meetup-rsvp" href="">RSVP at meetup.com</a></small>
<div id="meetup-description"></div>
<hr/>
</section>
<h3>About</h3>
<p>The Waterford Tech Meetup is a chance to socialise with (and learn from) like-minded people to discuss wide ranging topics of a technical nature. We meet on the second Tuesday of every month with the aim to have 1 or 2 talks, with ample time for socialising.</p>
<p>We hope to see you at the next meetup!</p>
<p>» <a href="https://goo.gl/qtgTdZ" target="_blank">Do you want to speak at the Waterford Tech Meetup?</a></p>
<hr/>
<h3>Sponsors</h3>
<p>Thanks to our sponsors for making Waterford Tech Meetup possible.</p>
<table id='sponsors'>
<tr>
<td><a href="https://www.localenterprise.ie/waterford" target="_blank"><img src="/images/sponsors/localenterpriseoffice.png" alt="Local Enterprise Office Waterford"></a></td>
<td><a href="https://www.redhat.com" target="_blank"><img src="/images/sponsors/redhat.png" alt="RedHat"></a></td>
</tr>
<tr>
<td><a href="http://www.bluefin.com" target="_blank"><img src="/images/sponsors/bluefin.jpeg" alt="Bluefin Payment Systems"></a></td>
<td><a href="http://www.servisbot.com/" target="_blank"><img src="/images/sponsors/servisbot_logo.png" alt="ServisBOT"></a></td>
</tr>
</table>
<footer class="site-footer">
<p class="site-footer-credits"><a href="https://github.com/waterfordtechmeetup/waterfordtechmeetup.github.io">GitHub</a>, <a href="https://twitter.com/WaterfordTech">Twitter</a> and <a href="https://www.linkedin.com/company/waterford-tech-meetup">LinkedIn</a>.</p>
<small>
<a title="Edmund Rice Bridge [Waterford]-122269" href="https://flickr.com/photos/infomatique/29914940513">flickr photo</a> shared by <a href="https://flickr.com/people/infomatique">infomatique</a> under a <a href="https://creativecommons.org/licenses/by-sa/2.0/">Creative Commons ( BY-SA ) license</a>
</small>
</footer>
</section>
</body>
</html>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$.ajax({
dataType: 'jsonp',
method: 'get',
url: 'https://api.meetup.com/Waterford-Tech-Meetup/events',
success: function (result) {
buildMeetupEventSection(result.data[0]);
}
});
});
var buildMeetupEventSection = function(meetup) {
if (meetup === "undefined") {
return false;
}
$('#meetup-rsvp').attr('href', meetup.link);
$('#meetup-time').html(formattedDateAndTime(meetup.time));
$('#meetup-description').html(meetup.description);
$('#meetup-venue').html(meetup.venue.name);
$('#meetup-venue-address').html(meetup.venue.address_1 + ", " + meetup.venue.city);
$('#next-meetup').show();
};
var formattedDateAndTime = function(time) {
var meetupDate = new Date(time);
var month = meetupDate.toLocaleString("en-gb", { month: "long" });
var date = meetupDate.getDate() + ' ' + month + " " + meetupDate.getFullYear();
var hours = meetupDate.getHours();
var minutes = "0" + meetupDate.getMinutes();
return date + " - " + hours + ':' + minutes.substr(-2);
};
</script>