mirror of
https://github.com/wezm/wezm.net.git
synced 2024-11-10 09:52:32 +00:00
14 lines
324 B
HTML
14 lines
324 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<%= render '_head' %>
|
|
</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>
|
|
<%= yield %>
|
|
</div>
|
|
<%= render '_footer' %>
|
|
</body>
|
|
</html>
|