25 lines
737 B
PHP
25 lines
737 B
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title><?= App::getConfig('title') ?></title>
|
|
|
|
<?php if ($styles): ?>
|
|
<?php foreach ($styles as $style): ?>
|
|
<link href="<?= $style ?>" media="all" rel="stylesheet" type="text/css" />
|
|
<?php endforeach; ?>
|
|
<?php endif; ?>
|
|
|
|
<?php if ($scripts): ?>
|
|
<?php foreach ($scripts as $script): ?>
|
|
<script src="<?= $script ?>" type="text/javascript"></script>
|
|
<?php endforeach; ?>
|
|
<?php endif; ?>
|
|
|
|
</head>
|
|
<body>
|
|
<div class="header">
|
|
<h1>WikiPoints</h1>
|
|
</div>
|
|
<?= isset($content) && !empty($content) ? $content : 'No content =(' ?>
|
|
</body>
|
|
</html>
|