servermgrv2/app/Views/layouts/admin.php
2023-07-27 17:21:55 +09:00

51 lines
1.6 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/admin.css" media="screen" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="/js/admin.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 Header Start -->
<?= $this->include($layout['path'] . '/top_menu'); ?>
<!-- Body Header End -->
<table id="main">
<tr>
<td width="160" valign="top">
<!-- Body Left menu Start -->
<?= $this->include($layout['path'] . '/left_menu'); ?>
<!-- Body Left menu End -->
</td>
<td width="*" valign="top" style="background-color:white">
<!-- Body Content Start -->
<?= $this->renderSection('content') ?>
<!-- Body Content End -->
</td>
<td width="50" valign="top">
<!-- Body Right menu Start -->
<?= $this->include($layout['path'] . '/right_menu'); ?>
<!-- Body Right menu End -->
</td>
</tr>
</table>
</body>
</html>