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

15 lines
324 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' %>
2009-11-09 23:42:38 +00:00
</head>
<body<%= %Q( class="#{@item[:body_class]}") if @item[:body_class] %>>
<%= render '_header' %>
<div id="content">
<h1><a href="<%= @item.reps.first.path %>"><%= @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>