Skip to content

Commit

Permalink
Fixed #148
Browse files Browse the repository at this point in the history
  • Loading branch information
Parziphal committed Jul 30, 2016
1 parent 84723bd commit 193938b
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions app/views/layouts/bare.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,21 @@
<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') ?>
<?php foreach (CONFIG()->asset_stylesheets as $asset) : ?>
<?= $this->stylesheetLinkTag($asset) ?>
<?php endforeach ?>
<?php foreach (CONFIG()->asset_javascripts as $asset) : ?>
<?= $this->javascriptIncludeTag($asset) ?>
<?php endforeach ?>
<?= CONFIG()->custom_html_headers ?>
<?= $this->content('html_header') ?>
</head>
<body>
<?= $this->partial("layouts/notice") ?>
<?= $this->partial("layouts/notice") ?>
<div id="content">
<?= $this->content() ?>
<?= $this->content() ?>
</div>
<?= $this->content('post_cookie_javascripts') ?>
<?= $this->content('post_cookie_javascripts') ?>
<?php
/*
<script type="text/javascript">
Expand All @@ -32,6 +35,6 @@
})();
</script>
*/
?>
?>
</body>
</html>

0 comments on commit 193938b

Please sign in to comment.