Fix Calendar.

Signed-off-by: Willy Sudiarto Raharjo <willysr@gmail.com>
This commit is contained in:
Willy Sudiarto Raharjo
2015-01-09 08:27:31 +07:00
parent 70ff983aff
commit afd52a9a21
7 changed files with 3 additions and 6484 deletions
+3 -24
View File
@@ -10,31 +10,8 @@ include "includes/meta.html";
<style type="text/css">
@import "includes/index.css";
@import "includes/normalize.css";
@import "includes/fullcalendar/fullcalendar.css";
@import "includes/fullcalendar/fullcalendar.print.css";
@import "includes/fullcalendar/cupertino.css";
</style>
<script type='text/javascript' src='includes/jquery/jquery.min.js'></script>
<script type='text/javascript' src='includes/jquery/jquery-ui-1.8.17.custom.min.js'></script>
<script type='text/javascript' src='includes/fullcalendar/fullcalendar.min.js'></script>
<script type='text/javascript' src='includes/fullcalendar/gcal.js'></script>
<script type='text/javascript'>
$(document).ready(function() {
$('#calendar').fullCalendar({
theme: true,
events: 'https://www.google.com/calendar/feeds/willysr%40gmail.com/public/basic',
currentTimezone: 'Asia/Jakarta',
header: {
left: 'prev,next today',
center: 'title',
right: 'month,agendaWeek,agendaDay'
},
defaultView: 'agendaWeek'
});
});
</script>
</head>
<body>
<?php
@@ -45,7 +22,9 @@ include "includes/functions.php";
include "includes/navbar.html";
?>
</header>
<div id='calendar'></div>
<div id="calendar" style="text-align:center; margin: auto;">
<iframe src="https://www.google.com/calendar/embed?src=willysr%40gmail.com&ctz=Asia/Jakarta" style="border: 0" width="960" height="800" frameborder="0" scrolling="no"></iframe>
</div>
<?php
include "includes/footer.php";
?>