-
Notifications
You must be signed in to change notification settings - Fork 2
/
calendar.php
34 lines (25 loc) · 1.01 KB
/
calendar.php
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
<?php $root_path = ''; ?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Calendar | SC IIT Ropar</title>
<?php include($root_path . 'assets/include/header-files.php'); ?>
</head>
<body>
<!-- Navbar -->
<?php
$active = "CALENDAR";
$trans = 0;
include($root_path . 'assets/include/navbar.php');
?>
<!-- Main Content -->
<div class="content">
<div class="row" style="width:100%; margin:auto">
<iframe src="https://calendar.google.com/calendar/embed?height=700&wkst=1&bgcolor=%23E67C73&ctz=Asia%2FKolkata&src=aWl0cnByLmFjLmluXzN0YTRiNmxydnBtYzVvbWM0cmp2N2hlbzgwQGdyb3VwLmNhbGVuZGFyLmdvb2dsZS5jb20&color=%23F09300&showCalendars=1" style="border:solid 1px #777; margin:auto" width="900" height="700" frameborder="0" scrolling="no"></iframe>
</div>
</div>
<!-- Footer -->
<?php include($root_path . 'assets/include/footer.php'); ?>
<?php include($root_path . 'assets/include/footer-files.php'); ?>
</body>
</html>