devroom.io/layouts/post.html
2013-03-22 22:03:45 +01:00

13 lines
269 B
HTML

<% render 'default' do %>
<div class='post'>
<h1><%= item[:title] %></h1>
<aside>
Posted on <%= get_pretty_date(item) %>
<br />
Tagged with <%= get_tags(item) %>.
</aside>
<artcle>
<%= yield %>
</article>
</div>
<% end %>