36 lines
1.1 KiB
PHP
36 lines
1.1 KiB
PHP
<!doctype html>
|
|
<html>
|
|
|
|
<head>
|
|
<base href="/" target="_self" />
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<?php foreach ($layout['stylesheets'] as $stylesheet) : ?>
|
|
<?= $stylesheet ?>
|
|
<?php endforeach ?>
|
|
<?php foreach ($layout['javascripts'] as $javascript) : ?>
|
|
<?= $javascript ?>
|
|
<?php endforeach ?>
|
|
|
|
<link href="/css/empty.css" media="screen" rel="stylesheet" type="text/css" />
|
|
<script type="text/javascript" src="/js/empty.js"></script>
|
|
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
|
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
|
<!--[if lt IE 9]>
|
|
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
|
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
|
<![endif]-->
|
|
<title><?= $title ?></title>
|
|
</head>
|
|
|
|
<body>
|
|
<!-- Body Content Start -->
|
|
<div id="layout_content">
|
|
<!-- layout_content Start -->
|
|
<?= $this->renderSection('content') ?>
|
|
<!-- layout_content End -->
|
|
</div>
|
|
<!-- Body Content End -->
|
|
</body>
|
|
|
|
</html>
|