wikipoints/ground/views/layout.php

29 lines
905 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>
<h1><?=App::getConfig('title')?></h1>
<hr/>
<a href="/">Главная</a> |
<a href="/json/points/">Точки</a> |
<a href="/json/point/id/1">Выбранная точка</a> |
<a href="/json/categories/">Категории</a>
<hr/>
<?= isset($content) && !empty($content) ? $content : 'No content =(' ?>
</body>
</html>