54 lines
1.4 KiB
PHP
54 lines
1.4 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><?= $this->config->item('site_name') ?></title>
|
|
|
|
<!-- META -->
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
<base href="<?= $this->config->item('base_url') ?>" />
|
|
|
|
<!-- CSS -->
|
|
<?= link_tag('css/main.css') ?>
|
|
|
|
<!-- JS -->
|
|
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
|
|
<script src="<?= base_url('js/init.js') ?>"></script>
|
|
<script data-main="<?= base_url('js/main') ?>" src="<?= base_url('js/libs/require.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/libs/respond.min.js') ?>"></script>
|
|
<![endif]-->
|
|
</head>
|
|
|
|
<body>
|
|
<header class="r">
|
|
</header>
|
|
|
|
|
|
|
|
<?= $content ?>
|
|
<footer class="r">
|
|
<div class="c -m12">
|
|
<div class="p">
|
|
<span class="-fl">Copyright Whitemill AB 2013</span>
|
|
<span class="-fr">Site credits | Terms of Use</span>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
|
|
</body>
|
|
</html>
|