-
Notifications
You must be signed in to change notification settings - Fork 100
/
index.html
28 lines (26 loc) · 1.4 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
<!DOCTYPE html>
<html>
<head>
<link rel='stylesheet' type='text/css' href='http://fonts.googleapis.com/css?family=Libre+Baskerville:400,700,400italic'>
<meta charset="utf-8">
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
<script type="text/javascript" src="js/tabletop1.3.4.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/leaflet.markercluster.js'></script>
<link rel="stylesheet" type="text/css" href="css/style.css">
<!-- Bonus NodeSchool stylesheet option! -->
<!-- <link rel="stylesheet" type="text/css" href="css/nodeschool.css"> -->
</head>
<body>
<h1>NodeSchool Events</h1>
<div id="calendar-goes-here"></div>
<small>Add events to this <a href="https://docs.google.com/a/github.com/spreadsheet/ccc?key=0AuOjlXjUrSbAdE1XRFJkeEJZQ1NSelhILUR0NXdBWUE#gid=0&output=json" target="_blank">spreadsheet</a>. Visit the GitHub <a href="http://www.github.com/jlord/sheetsee-calendar">repository</a>.</small>
</body>
<script type="text/javascript">
document.addEventListener('DOMContentLoaded', function() {
var URL = "0AuOjlXjUrSbAdE1XRFJkeEJZQ1NSelhILUR0NXdBWUE"
Tabletop.init( { key: URL, callback: generateCalendar, simpleSheet: true } )
})
</script>
</html>