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