aboutsummaryrefslogtreecommitdiff
path: root/interfaces/http/web/views/post.erb
blob: 21794fba1dd7b65383e3bb0fc31163e2cf88b9fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<h1><%= @post.title %></h1>
<div class="meta">
	<p>
		by
		<%= @post.user.name || @post.user.username %>
		on
		<%= @post.created_at.strftime('%e %b %Y') %>
	</p>
</div>
<div class="content">
	<%= @post.body %>
</div>