-
Notifications
You must be signed in to change notification settings - Fork 0
/
calendario.php
50 lines (42 loc) · 1.4 KB
/
calendario.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?php
ini_set('display_errors', 'Off');
//ini_set('display_errors', 'On');
error_reporting(E_ALL);
include('session.php');
?>
<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="CST - DiathesisLab">
<title>Città Alta Plurale | Calendario</title>
<!-- Links -->
<?php require_once('inc/links.inc'); ?>
</head>
<body>
<header>
<?php require_once('inc/header.inc'); ?>
</header>
<!-- ********* TODO ********** -->
<div class=" bg-img-hauto p-sm-5">
<main class="container">
<div class="row">
<div class="col-12 text-center mt-5">
<h1 class="section-heading mt-0 mb-3">Calendario eventi</h1>
<h3>segui gli eventi organizzati per voi</h3>
</div>
<hr class="primary">
<div class="col-lg-12 text-center" id="calendario">
<iframe src="https://calendar.google.com/calendar/embed?src=e8bh5usiul2eu2r75e41qmbtos%40group.calendar.google.com&ctz=Europe%2FRome" style="border: 0" width="800" height="600" frameborder="0" scrolling="no"></iframe>
</div>
</div>
</main>
</div>
<!-- Footer -->
<?php require_once('inc/footer.inc'); ?>
<!-- Scripts -->
<?php require_once('inc/footerscripts.inc'); ?>
</body>
</html>