1
0
Fork 0
forked from wezm/wezm.net
wezm.net/layouts/default.html

21 lines
496 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
2009-11-09 23:42:38 +00:00
<head>
2010-03-10 09:04:08 +00:00
<%= render '_head' %>
2010-08-18 10:55:19 +00:00
<script type="text/javascript">
jQuery(function() {
// Enable light box
$("a[rel^='prettyPhoto']").prettyPhoto({theme: "facebook"});
});
</script>
2009-11-09 23:42:38 +00:00
</head>
<body<%= %Q( class="#{@item[:body_class]}") if @item[:body_class] %>>
<%= render '_header' %>
<div id="content">
2010-07-23 03:21:05 +00:00
<h1><a href="<%= @item.reps.first.path %>"><%=h @item[:title] %></a></h1>
2009-11-09 23:42:38 +00:00
<%= yield %>
</div>
<%= render '_footer' %>
2009-11-09 23:42:38 +00:00
</body>
</html>