mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2025-01-10 12:25:40 +00:00
66 lines
1.2 KiB
HTML
66 lines
1.2 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset='utf-8' />
|
||
|
<link href='../fullcalendar.css' rel='stylesheet' />
|
||
|
<link href='../fullcalendar.print.css' rel='stylesheet' media='print' />
|
||
|
<script src='../lib/moment.min.js'></script>
|
||
|
<script src='../lib/jquery.min.js'></script>
|
||
|
<script src='../fullcalendar.min.js'></script>
|
||
|
<script src='../gcal.js'></script>
|
||
|
<script>
|
||
|
|
||
|
$(document).ready(function() {
|
||
|
|
||
|
$('#calendar').fullCalendar({
|
||
|
|
||
|
// US Holidays
|
||
|
events: 'http://www.google.com/calendar/feeds/usa__en%40holiday.calendar.google.com/public/basic',
|
||
|
|
||
|
eventClick: function(event) {
|
||
|
// opens events in a popup window
|
||
|
window.open(event.url, 'gcalevent', 'width=700,height=600');
|
||
|
return false;
|
||
|
},
|
||
|
|
||
|
loading: function(bool) {
|
||
|
$('#loading').toggle(bool);
|
||
|
}
|
||
|
|
||
|
});
|
||
|
|
||
|
});
|
||
|
|
||
|
</script>
|
||
|
<style>
|
||
|
|
||
|
body {
|
||
|
margin: 40px 10px;
|
||
|
padding: 0;
|
||
|
font-family: "Lucida Grande",Helvetica,Arial,Verdana,sans-serif;
|
||
|
font-size: 14px;
|
||
|
}
|
||
|
|
||
|
#loading {
|
||
|
display: none;
|
||
|
position: absolute;
|
||
|
top: 10px;
|
||
|
right: 10px;
|
||
|
}
|
||
|
|
||
|
#calendar {
|
||
|
max-width: 900px;
|
||
|
margin: 0 auto;
|
||
|
}
|
||
|
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<div id='loading'>loading...</div>
|
||
|
|
||
|
<div id='calendar'></div>
|
||
|
|
||
|
</body>
|
||
|
</html>
|