MongoDB-Uppgift/app/views/posts/index.html.erb
2025-05-23 14:14:30 +02:00

16 lines
286 B
Text

<p style="color: green"><%= notice %></p>
<% content_for :title, "Posts" %>
<h1>Posts</h1>
<div id="posts">
<% @posts.each do |post| %>
<%= render post %>
<p>
<%= link_to "Show this post", post %>
</p>
<% end %>
</div>
<%= link_to "New post", new_post_path %>