aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/blog_posts/index.html.erb
blob: 4dddcef34699848d0e726f927781fc8cf3cf3014 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
<% content_for :body_content_left do %>
  <ul id="blog_posts">
    <% @blog_posts.each do |blog_post| %>
      <li>
        <%= link_to blog_post.title, blog_post_url(blog_post) %>
      </li>
    <% end %>
  </ul>
<% end %>

<%= render :partial => "/shared/content_page" %>