Action View
Handles template rendering. Can use various
template languages but Rails comes
standard with ERB which is just Ruby mixed
into HTML.
<% @posts.each do |post| %>
- <%= post.title %>
<% end %>
• a blog post part I
• a blog post part II
• a blog post part III
posts.html.erb as seen in the browser