43 lines
1.2 KiB
PHP
43 lines
1.2 KiB
PHP
<!doctype html>
|
|
<!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ -->
|
|
<!--[if lt IE 8]><html class="ie-legacy"><![endif]-->
|
|
<!--[if IE 8]><html class="ie-8"><![endif]-->
|
|
<!--[if gt IE 8]><!--><html><!--<![endif]-->
|
|
<head>
|
|
<title></title>
|
|
|
|
<!-- META -->
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
|
|
<!-- CSS -->
|
|
<link type="text/css" rel="stylesheet" href="<?= base_url('css/ms.css') ?>" />
|
|
|
|
<!-- JS -->
|
|
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
|
|
|
|
<!-- IE Fixes -->
|
|
<!--[if lt IE 8]>
|
|
<link rel="stylesheet" href="<?= base_url('css/ie-legacy.css') ?>">
|
|
<![endif]-->
|
|
<!--[if IE 8]>
|
|
<link rel="stylesheet" href="<?= base_url('css/ie-8.css') ?>">
|
|
<![endif]-->
|
|
<!--[if lt IE 9]>
|
|
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
|
|
<script src="<?= base_url('js/bower_components/respond/respond.min.js') ?>"></script>
|
|
<![endif]-->
|
|
</head>
|
|
|
|
<body>
|
|
<div class="w">
|
|
<div class="company">
|
|
<h1 class="logo"><?= $this->config->item('site_name') ?></h1>
|
|
</div>
|
|
<div class="frm">
|
|
<?= $content ?>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|