2010-01-30 04:33:54 +00:00
|
|
|
<!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>
|
2010-01-30 05:50:07 +00:00
|
|
|
<body<%= %Q( class="#{@item[:body_class]}") if @item[:body_class] %>>
|
2010-02-04 02:38:35 +00:00
|
|
|
<%= render '_header' %>
|
2010-01-30 04:33:54 +00:00
|
|
|
<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>
|
2010-02-04 02:38:35 +00:00
|
|
|
<%= render '_footer' %>
|
2009-11-09 23:42:38 +00:00
|
|
|
</body>
|
|
|
|
</html>
|