This commit is contained in:
Renzo 2016-07-30 01:15:00 -05:00
parent 84723bd486
commit 193938b72c

View File

@ -6,18 +6,21 @@
<meta name="description" content="<?= CONFIG()->app_name ?>"> <meta name="description" content="<?= CONFIG()->app_name ?>">
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon"> <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link rel="top" title="<?= CONFIG()->app_name ?>" href="/"> <link rel="top" title="<?= CONFIG()->app_name ?>" href="/">
<?= $this->stylesheetLinkTag("application") ?> <?php foreach (CONFIG()->asset_stylesheets as $asset) : ?>
<?= $this->javascriptIncludeTag('application') ?> <?= $this->stylesheetLinkTag($asset) ?>
<?= $this->javascriptIncludeTag('moe-legacy/application') ?> <?php endforeach ?>
<?= CONFIG()->custom_html_headers ?> <?php foreach (CONFIG()->asset_javascripts as $asset) : ?>
<?= $this->content('html_header') ?> <?= $this->javascriptIncludeTag($asset) ?>
<?php endforeach ?>
<?= CONFIG()->custom_html_headers ?>
<?= $this->content('html_header') ?>
</head> </head>
<body> <body>
<?= $this->partial("layouts/notice") ?> <?= $this->partial("layouts/notice") ?>
<div id="content"> <div id="content">
<?= $this->content() ?> <?= $this->content() ?>
</div> </div>
<?= $this->content('post_cookie_javascripts') ?> <?= $this->content('post_cookie_javascripts') ?>
<?php <?php
/* /*
<script type="text/javascript"> <script type="text/javascript">
@ -32,6 +35,6 @@
})(); })();
</script> </script>
*/ */
?> ?>
</body> </body>
</html> </html>