diff options
author | raylu <raylu@mixpanel.com> | 2011-07-24 23:12:25 -0700 |
---|---|---|
committer | raylu <raylu@mixpanel.com> | 2011-07-24 23:12:25 -0700 |
commit | 2d2842845b648571e8fc38cf1b3df65386532469 (patch) | |
tree | 56a2f496ca0480572f1cf725d7c71a4ed003e99d /views | |
parent | 00e10883f813ff2230b879aef58a30520ac5a176 (diff) | |
download | otakuhub-2d2842845b648571e8fc38cf1b3df65386532469.tar.xz |
this is so broken. the ribbon will never work in IE
Diffstat (limited to 'views')
-rw-r--r-- | views/layouts/default.html.php | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/views/layouts/default.html.php b/views/layouts/default.html.php index cd179f9..289ec8a 100644 --- a/views/layouts/default.html.php +++ b/views/layouts/default.html.php @@ -6,18 +6,20 @@ use \lithium\security\Auth; <head> <?= $this->html->charset(); ?> <title>OtakuHub<?php $title = $this->title(); if ($title) echo " > $title" ?></title> - <?= $this->html->style(array('style', 'base')) ?> + <?= $this->html->style('style') ?> + <?= $this->html->style('base') ?> <?= $this->html->style('themes/light') ?> <?= $this->html->style('ribbon'); ?> <?= $this->html->style('jquery.fancybox-1.3.4') ?> <?= $this->html->style('http://fonts.googleapis.com/css?family=Cantarell:regular,bold&v1') ?> <?= $this->styles(); ?> </head> -<div class="right ribbon-holder"> - <a href="http://github.com/jbalogh" class="orange ribbon"> - <span class="text"><?= lithium\core\Environment::is('development') ? "Development" : "Production" ?></span> - </a> - </div> +<body> +<aside id="ribbon"> + <a href="http://github.com/jbalogh"> + <?= lithium\core\Environment::is('development') ? "Development" : "Production" ?> + </a> +</aside> <header> <?php $links = array( |