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

44 lines
1.5 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) : ?>
<?php echo $stylesheet ?>
<?php endforeach; ?>
<?php foreach ($layout['javascripts'] as $javascript) : ?>
<?php echo $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><?php echo $title ?></title>
</head>
<body>
<!-- Body Header Start -->
<?php echo $this->include($layout['path'] . '/top_menu'); ?>
<!-- Body Header End -->
<div id="main" class="row g-3">
<div id="left_menu" class="col-1">
<!-- Body Left menu Start -->
<?php echo $this->include($layout['path'] . '/left_menu'); ?>
<!-- Body Left menu End -->
</div>
<div id="content" class="col-11">
<!-- Body Content Start -->
<?php echo $this->renderSection('content') ?>
<!-- Body Content End -->
</div>
</div>
</body>
</html>