Sha256: 81dd1fff6ba8d4a1d1908656575ad92702113296852de8dac2073eb0d1b9d735
Contents?: true
Size: 299 Bytes
Versions: 11
Compression:
Stored size: 299 Bytes
Contents
<% if @posts.empty? %> <p>No posts found.</p> <p><a href="/add">Add</a></p> <% else %> <% for post in @posts %> <h1><%= post.title %></h1> <p><%= post.body %></p> <p> <a href="/edit/<%= post.id %>">Edit</a> | <a href="/view/<%= post.id %>">View</a> </p> <% end%> <% end %>
Version data entries
11 entries across 11 versions & 1 rubygems