default.html.php 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  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('style', 'base', 'grid')); ?>
  15. <?php echo $this->html->style(array('themes/light', 'themes/green')); ?>
  16. <?php echo $this->html->style(array('prettyPhoto')); ?>
  17. <script src="/js/jquery-1.6.1.min.js" type="text/javascript"></script>
  18. <?php echo $this->html->style(array('jquery.tagsinput')); ?>
  19. <?= $this->html->script("/js/jquery.tagsinput.min.js"); ?>
  20. <script type="text/javascript" >
  21. function clearDefault(el) {
  22. if (el.defaultValue==el.value) el.value = ""
  23. }
  24. function resetValue(el) {
  25. el.value = "Search..."
  26. }
  27. </script>
  28. <?php echo $this->html->link('Icon', null, array('type' => 'icon')); ?>
  29. </head>
  30. <!-- start header -->
  31. <div id="wrapper">
  32. <header>
  33. <!-- logo -->
  34. <h1 id="logo"><a href="/">Kameleon</a></h1>
  35. <!-- nav -->
  36. <nav>
  37. <ul id="nav">
  38. <li class="current"><a href="/users/feed">Home</a></li>
  39. <li><a href="about.html">Anime</a>
  40. <ul>
  41. <li><a href="about.html">Top Anime</a></li>
  42. <li><a href="#">recomendations</a>
  43. </ul>
  44. <li><a href="about.html">Manga</a>
  45. <ul>
  46. <li><a href="about.html">Top Manga</a></li>
  47. <li><a href="#">recomendations</a>
  48. </ul>
  49. </li>
  50. </li>
  51. <li><a href="portfolio.html">Stuff</a>
  52. <ul>
  53. <li><a href="portfolio.html">3 Column Portfolio</a></li>
  54. <li><a href="portfolio-list.html">Portfolio List</a></li>
  55. </ul>
  56. </li>
  57. <li><a href="services.html">Foo</a>
  58. <ul>
  59. <li><a href="pricing.html">Pricing Table</a></li>
  60. </ul>
  61. </li>
  62. <li><a href="contact.html">Contact Us</a></li>
  63. <li><a href="/login?iframe=true&width=100%&height=600px" rel="prettyPhoto[iframes]">Login</a></li>
  64. <li>
  65. <?= $this->form->create(null, array('url' => '/search/index/anime', 'class' => 'search', 'style' => 'height:20px', 'method' => 'get')); ?>
  66. <?= $this->form->text('search', array('value' => 'Search...', 'onFocus' => 'clearDefault(this)', 'class' => 'sidebar-search', 'style' => 'width:200px')); ?>
  67. <button class="search" type="submit">Go</button>
  68. <br class="cl"/>
  69. <?= $this->form->end(); ?>
  70. </li>
  71. </ul>
  72. <br class="cl" />
  73. </nav>
  74. <br class="cl" />
  75. </header>
  76. <!-- end header -->
  77. <div id="page">
  78. <?php echo $this->content(); ?>
  79. </div>
  80. <br class="cl" />
  81. <!-- footer Start -->
  82. <footer>
  83. <ul class="footer-nav">
  84. <li><a href="index.html">Home</a> |</li>
  85. <li><a href="about.html">About</a> |</li>
  86. <li><a href="portfolio.html">Terms of Use</a> |</li>
  87. <li><a href="portfolio.html">Terms of Use</a> |</li>
  88. <li><a href="contact.html">Contact</a></li>
  89. </ul>
  90. <p>Copyright ©2011, <a href="http://www.melenion.org">Melenion Dev Studios</a> Designed by: <a href="http://www.mudodesigns.com">Chris Mooney</a></p>
  91. <br class="cl" />
  92. </div>
  93. </footer>
  94. <!-- footer end -->
  95. </div>
  96. <!-- Javascript at the bottom for fast page loading -->
  97. <script src="/js/jquery.tools.min.js" type="text/javascript"></script>
  98. <script src="/js/jquery.lightbox-0.5.min.js" type="text/javascript"></script>
  99. <script src="/js/jquery.form.js" type="text/javascript"></script>
  100. <script src="/js/cufon-yui.js" type="text/javascript"></script>
  101. <script src="/js/Aller.font.js" type="text/javascript"></script>
  102. <script src="/js/jquery.tipsy.js" type="text/javascript"></script>
  103. <script src="/js/functions.js" type="text/javascript"></script>
  104. <?= $this->html->script("/js/jquery.anchor.js"); ?>
  105. <?= $this->html->script("/js/jquery.prettyPhoto.js"); ?>
  106. <script type="text/javascript" charset="utf-8">
  107. $(document).ready(function(){
  108. $("a[rel^='prettyPhoto']").prettyPhoto();
  109. });
  110. </script>
  111. <?php echo $this->scripts(); ?>
  112. <script type="text/javascript">
  113. $(document).ready(function(){
  114. setTimeout(function(){
  115. $(".flash-message").fadeOut("slow", function () {
  116. $(".flash-message").remove();
  117. }); }, 2000);
  118. });
  119. </script>
  120. <!--[if lt IE 7 ]>
  121. <script src="js/dd_belatedpng.js"></script>
  122. <![endif]-->
  123. </body>
  124. </html>