blob: 9873b81d835026c1aa1a6d1e8ce03a958b504940 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?php
if (time() >= 1686787200) {
peh_error("Page not found: fronting", 404);
}
require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/init.inc"; global $title; global $isLoggedIn; global $lang; global $pages;
require_once $_SERVER['DOCUMENT_ROOT'] . '/includes/components/header.inc';
?>
<br>
<div class="container">
<div>
<?php require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/components/planner.inc"; ?>
</div>
</div>
<?php require_once $_SERVER['DOCUMENT_ROOT'] . '/includes/components/footer.inc'; ?>
|