42 lines
1.4 KiB
PHP
42 lines
1.4 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 ($viewDatas['layout']['stylesheets'] as $stylesheet) : ?>
|
|
<?= $stylesheet ?>
|
|
<?php endforeach; ?>
|
|
<?php foreach ($viewDatas['layout']['javascripts'] as $javascript) : ?>
|
|
<?= $javascript ?>
|
|
<?php endforeach; ?>
|
|
|
|
<link href="/css/front.css" media="screen" rel="stylesheet" type="text/css" />
|
|
<script type="text/javascript" src="/js/front.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><?= $viewDatas['title'] ?></title>
|
|
</head>
|
|
|
|
<body>
|
|
<?= $this->include($viewDatas['layout']['path'] . '/top_navigator'); ?>
|
|
<table id="layout">
|
|
<tr>
|
|
<td id="left" valign="top" width="180">
|
|
<?= $this->include($viewDatas['layout']['path'] . '/left_menu'); ?>
|
|
</td>
|
|
<td id="body" valign="top" width="*">
|
|
<?= $this->include('templates/front/header'); ?>
|
|
<?= $this->renderSection('content') ?>
|
|
<?= $this->include('templates/front/footer'); ?>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
|
|
</html>
|