32 lines
919 B
PHP
32 lines
919 B
PHP
<?php
|
|
define('Such_a_good_girl', true);
|
|
require_once $_SERVER['DOCUMENT_ROOT'] . '/config.php';
|
|
require_once $_SERVER['DOCUMENT_ROOT'] . '/inc/base/image_gallery.php';
|
|
require_once $_SERVER['DOCUMENT_ROOT'] . '/inc/base/pages.php';
|
|
?>
|
|
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<?php require_once $_SERVER['DOCUMENT_ROOT'] . '/inc/base/header.php'; ?>
|
|
</head>
|
|
<body class="is-preload">
|
|
<div id="wrapper">
|
|
<header id="header">
|
|
<h1><a href="/"><strong class="title"><?php echo htmlspecialchars($config['title']) ?></strong></a></h1>
|
|
<nav>
|
|
<ul>
|
|
<?php require_once $_SERVER['DOCUMENT_ROOT'] . '/inc/base/menu.php'; ?>
|
|
</ul>
|
|
</nav>
|
|
</header>
|
|
|
|
<div id="main">
|
|
<?php echo $content; ?>
|
|
</div>
|
|
|
|
<?php require_once $_SERVER['DOCUMENT_ROOT'] . '/inc/base/footer.php'; ?>
|
|
|
|
</div>
|
|
</body>
|
|
</html>
|