cfmgrv3/app/Views/layouts/front.php
2023-06-19 13:06:49 +09:00

45 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) : ?>
<?php echo $stylesheet ?>
<?php endforeach; ?>
<?php foreach ($layout['javascripts'] as $javascript) : ?>
<?php echo $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><?php echo $title ?></title>
</head>
<body>
<!-- layout_content Start -->
<div id="layout_content">
<!-- layout_content Top Start -->
<?php echo $this->include($layout['path'] . '/top_logo'); ?>
<!-- Layout Top Menu 시작-->
<?php echo $this->include($layout['path'] . '/top_menu'); ?>
<!-- Layout Top Menu 끝 -->
<!-- layout_content Top End -->
<!-- layout_content Body Start -->
<?php echo $this->renderSection('content') ?>
<!-- layout_content Body Content End -->
<!-- layout_content Bottom Start -->
<?php echo $this->include($layout['path'] . '/copyright'); ?>
<!-- layout_content Bottom End -->
</div>
<!-- layout_content End -->
</body>
</html>