aboutsummaryrefslogtreecommitdiff
path: root/interfaces/http/web/views/index.erb
blob: ee96a6c366fc06fed366062e2614607c0ddc6e37 (plain)
1
2
3
4
5
6
7
8
9
<% for post in @posts %>
	<h2><%= post.title %></h2>
	<div class="meta">
		<p><%= post.created_at.strftime('%e %b %Y') %></p>
	</div>
	<div class="content">
		<%= post.body %>
	</div>
<% end %>