shoppingmallv2/app/Views/layouts/front.php
최준흠git config git config --helpgit config --global user.name 최준흠 a0c66ee3ec shoppingmallv2 init...
2023-08-04 23:19:19 +09:00

49 lines
1.7 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>
<div id="head" class="row">
<?= $this->include($viewDatas['layout']['path'] . '/top_menu'); ?>
</div>
<table id="layout">
<tr>
<td id="left" valign="top" width="160">
<?= $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'); ?>
<?= $this->include($viewDatas['layout']['path'] . '/copyright'); ?>
</td>
<td id="right" valign="top" width="50">
<?= $this->include($viewDatas['layout']['path'] . '/right_menu'); ?>
</td>
</tr>
</table>
<div id="tail" class="row"></div>
</body>
</html>