wikipoints/ground/views/layout.php

15 lines
438 B
PHP

<html>
<head>
<title><?=App::getConfig('title')?></title>
</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>