default.html copy.php 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?php
  2. /**
  3. * Lithium: the most rad php framework
  4. *
  5. * @copyright Copyright 2010, Union of RAD (http://union-of-rad.org)
  6. * @license http://opensource.org/licenses/bsd-license.php The BSD License
  7. */
  8. ?>
  9. <!doctype html>
  10. <html>
  11. <head>
  12. <?php echo $this->html->charset();?>
  13. <title>OtakuHub > <?php echo $this->title(); ?></title>
  14. <?php echo $this->html->style(array('debug', 'lithium')); ?>
  15. <?php echo $this->scripts(); ?>
  16. <script src = https://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js></script>
  17. <style type="text/css">
  18. .flash-message{
  19. width:759px;
  20. padding-top:8px;
  21. padding-bottom:8px;
  22. background-color: #bebebe;
  23. font-weight:bold;
  24. font-size:20px;-moz-border-radius: 6px;-webkit-border-radius: 6px;
  25. }
  26. </style>
  27. <script type="text/javascript">
  28. $(document).ready(function(){
  29. setTimeout(function(){
  30. $(".flash-message").fadeOut("slow", function () {
  31. $(".flash-message").remove();
  32. }); }, 2000);
  33. });
  34. </script>
  35. <?php echo $this->html->link('Icon', null, array('type' => 'icon')); ?>
  36. </head>
  37. <body class="app">
  38. <div id="container">
  39. <div id="header">
  40. <h1>OtakuHub</h1>
  41. <h2>
  42. Powered by <?php echo $this->html->link('Lithium', 'http://lithify.me/'); ?>.
  43. </h2>
  44. </div>
  45. <div id="content">
  46. <?php echo $this->content(); ?>
  47. </div>
  48. </div>
  49. </body>
  50. </html>