2015-06-16 11:11:35 -04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<title><?= $title ?></title>
|
2015-06-24 16:01:35 -04:00
|
|
|
<meta charset="utf-8" />
|
2016-01-20 13:01:41 -05:00
|
|
|
<meta http-equiv="cache-control" content="no-store" />
|
2016-02-01 09:49:18 -05:00
|
|
|
<meta http-equiv="Content-Security-Policy" content="script-src 'self'" />
|
2016-03-07 14:37:49 -05:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1, user-scalable=0" />
|
2017-02-17 08:25:19 -05:00
|
|
|
<link rel="icon" href="<?= $urlGenerator->assetUrl('favicon.ico') ?>" />
|
|
|
|
<link rel="stylesheet" href="<?= $urlGenerator->assetUrl('css.php/g/base/debug') ?>" />
|
2017-02-15 15:56:10 -05:00
|
|
|
<script defer="defer" src="<?= $urlGenerator->assetUrl('js.php/g/base') ?>"></script>
|
2015-06-16 11:11:35 -04:00
|
|
|
</head>
|
2015-09-17 23:11:18 -04:00
|
|
|
<body class="<?= $escape->attr($url_type) ?> list">
|
2016-01-04 10:53:03 -05:00
|
|
|
<header>
|
2016-07-27 14:32:37 -04:00
|
|
|
<?php include 'main-menu.php' ?>
|
2016-02-01 09:49:18 -05:00
|
|
|
<?php if(isset($message) && is_array($message)):
|
2017-02-16 14:30:39 -05:00
|
|
|
foreach($message as $m)
|
|
|
|
{
|
2017-02-17 08:25:19 -05:00
|
|
|
extract($m);
|
2017-02-16 14:30:39 -05:00
|
|
|
include 'message.php';
|
|
|
|
}
|
2016-02-01 09:49:18 -05:00
|
|
|
endif ?>
|
|
|
|
</header>
|