-
Notifications
You must be signed in to change notification settings - Fork 28
/
default.html.ep
64 lines (52 loc) · 1.77 KB
/
default.html.ep
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
<!doctype html>
<html>
<head>
<link rel="stylesheet" type="text/css" media="screen" href="/css/main.css" />
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-29402272-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<div id="header">
<img class="profile" src="/images/bender_promo.png" />
<a class="home" href="/" alt="Home"></a>
% if ($self->req->url ne '/') {
<div class="fb_status">
<span class="load statii"></span>
<span class="time_since"></span>
<span class="source"></span>
</div>
% }
<ul class="toc">
<li><a href="/blogs">Blog</a></li>
<li><a href="/photos">Photos</a></li>
</ul>
</div>
<div id="main">
<div id="box-top"></div>
<div id="content">
<%= content %>
</div>
<div id="box-bottom"></div>
</div>
<div id="footer">
<ul>
<li><a href="http://mojolicio.us">Mojolicious</a></li>
<li><a href="http://mojocasts.com">Mojocasts</a></li>
<li><a href="http://github.com/tempire/mojoexample">Mojo Example</a></li>
<li><a href="http://github.com/kraih/mojo">Github</a></li>
<li><a href="http://search.cpan.org/dist/Mojolicious/">CPAN</a></li>
<li><a href="http://zombiedolphin.com">Zombie Dolphin</a></li>
</ul>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.13/jquery-ui.min.js"></script>
</body>
</html>