app/controllers/posts_controller.rb
app/models/post.rb
app/views/posts/*.html.erb
app/services ?
lib/ ?
app/presenters ?
realtime/ ?
<table>
<tr><th>Title</th><th>Author</th></tr>
<% @posts.each do |post| %>
<tr>
<th><%= post.title %></th>
<th><%= post.author %></th>
</tr>
<% end %>
</table>
vs.
<script type="text/x-handlebars">
<table>
<tr><th>Title</th><th>Author</th></tr>
{{#each post in posts }}
<tr>
<th>{{ post.title }}</th>
<th>{{ post.author }}</th>
</tr>
{{/each }}
</table>
</script>