[go: up one dir, main page]

Menu

[r2]: / monket-cal / index.php  Maximize  Restore  History

Download this file

25 lines (18 with data), 452 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<?php
include_once('monket-cal-config.php');
include_once(MONKET_SOURCE . 'monket-cal-init.php');
echo getCalInitHTML();
?>
</head>
<body>
<h1><?= $MC['title'] ?></h1>
<?php
include_once(MONKET_SOURCE . 'monket-cal-parse.php');
displayCalendar();
?>
</body>
</html>