Sequenzia/app/views/layouts/bare.php
2013-10-26 18:06:58 -05:00

38 lines
1.4 KiB
PHP
Executable File

<!DOCTYPE html>
<html class="action-<?= $this->request()->controller() ?> action-<?= $this->request()->controller() ?>-<?= $this->request()->action() ?> hide-advanced-editing">
<head>
<meta http-equiv="Content-type" content="text/html;charset=UTF-8">
<title><?= $this->page_title ?></title>
<meta name="description" content="<?= CONFIG()->app_name ?>">
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link rel="top" title="<?= CONFIG()->app_name ?>" href="/">
<?= $this->stylesheetLinkTag("application") ?>
<?= $this->javascriptIncludeTag('application') ?>
<?= $this->javascriptIncludeTag('moe-legacy/application') ?>
<?= CONFIG()->custom_html_headers ?>
<?= $this->content('html_header') ?>
</head>
<body>
<?= $this->partial("layouts/notice") ?>
<div id="content">
<?= $this->content() ?>
</div>
<?= $this->content('post_cookie_javascripts') ?>
<?php
/*
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-291955-10']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
*/
?>
</body>
</html>