Sha256: 4df44df15de1cab5be6a8d6eca4f2c2a46fce543663f83a0f9504fa669350a9e

Contents?: true

Size: 497 Bytes

Versions: 3

Compression:

Stored size: 497 Bytes

Contents

<h1>Listing blogs</h1>

<table>
  <tr>
    <th>Title</th>
    <th>Content</th>
    <th></th>
    <th></th>
    <th></th>
  </tr>

<% @blogs.each do |blog| %>
  <tr>
    <td><%= blog.title %></td>
    <td><%= blog.content %></td>
    <td><%= link_to 'Show', blog %></td>
    <td><%= link_to 'Edit', edit_blog_path(blog) %></td>
    <td><%= link_to 'Destroy', blog, :confirm => 'Are you sure?', :method => :delete %></td>
  </tr>
<% end %>
</table>

<br />

<%= link_to 'New Blog', new_blog_path %>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
induction_cannon_01-0.0.5 app/views/blogs/index.html.erb
induction_cannon_01-0.0.3 app/views/blogs/index.html.erb
induction_cannon_01-0.0.2 app/views/blogs/index.html.erb