diff options
author | raylu <raylu@mixpanel.com> | 2011-07-03 04:29:55 -0700 |
---|---|---|
committer | raylu <raylu@mixpanel.com> | 2011-07-03 04:29:55 -0700 |
commit | b24488ae40a5b503c1c9662af887d39d5868456c (patch) | |
tree | 39ff7c21cdf2b844b801f517cd1d29b934eae1e2 /views/layouts | |
parent | 05a2b26d9038752a40348a3f226e44710833c49b (diff) | |
download | otakuhub-b24488ae40a5b503c1c9662af887d39d5868456c.tar.xz |
pointless little fixes
Diffstat (limited to 'views/layouts')
-rw-r--r-- | views/layouts/default.html copy.php | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/views/layouts/default.html copy.php b/views/layouts/default.html copy.php deleted file mode 100644 index bad2fe4..0000000 --- a/views/layouts/default.html copy.php +++ /dev/null @@ -1,52 +0,0 @@ -<?php -/** - * Lithium: the most rad php framework - * - * @copyright Copyright 2010, Union of RAD (http://union-of-rad.org) - * @license http://opensource.org/licenses/bsd-license.php The BSD License - */ -?> -<!doctype html> -<html> -<head> - <?php echo $this->html->charset();?> - <title>OtakuHub > <?php echo $this->title(); ?></title> - <?php echo $this->html->style(array('debug', 'lithium')); ?> - <?php echo $this->scripts(); ?> - - - <script src = https://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js></script> - <style type="text/css"> - .flash-message{ - width:759px; - padding-top:8px; - padding-bottom:8px; - background-color: #bebebe; - font-weight:bold; - font-size:20px;-moz-border-radius: 6px;-webkit-border-radius: 6px; - } - </style> - <script type="text/javascript"> - $(document).ready(function(){ - setTimeout(function(){ - $(".flash-message").fadeOut("slow", function () { - $(".flash-message").remove(); - }); }, 2000); - }); - </script> - <?php echo $this->html->link('Icon', null, array('type' => 'icon')); ?> -</head> -<body class="app"> - <div id="container"> - <div id="header"> - <h1>OtakuHub</h1> - <h2> - Powered by <?php echo $this->html->link('Lithium', 'http://lithify.me/'); ?>. - </h2> - </div> - <div id="content"> - <?php echo $this->content(); ?> - </div> - </div> -</body> -</html> |