-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (40 loc) · 1.11 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<script>
var href = window.location.href
if (href.match('next.js.la')) rNext()
if (href.match('minutes.js.la')) rMinutes()
if (href.match('hangout.js.la')) rHangout()
function rHangout () {
window.location.href = 'https://us02web.zoom.us/j/86090715544?pwd=cUJFTW5BTU4yMXZIVytiR2d3UGRldz09'
}
function rMinutes () {
window.location.href = 'https://docs.google.com/document/d/1cS2V-3o4iOJtb3_mLiqTlPvTsxRIqE5DOLq84_cJu6A/edit'
}
function rNext () {
var d = new Date()
d.setMonth(d.getMonth() + 1)
var year = d.getFullYear()
var month = [
'january',
'february',
'march',
'april',
'may',
'june',
'july',
'august',
'september',
'november',
'december'
][d.getMonth()]
window.location.href = `https://jsla-${month}-${year}.eventbrite.com/?aff=site`
}
</script>
</body>
</html>