<%= notice %>

<% @posts.each do |post| %>

<%= link_to "#{post.title}", post %>

<%= post.body.split[0..80].join(' ').gsub(/[^0-9a-z \.]/i, '') %>

<% end %>
<%= link_to 'New Post', new_post_path %>