bootcamp/app/views/movies/index.html.erb

8 lines
124 B
Plaintext

<h1>The only movies that actually matter</h1>
<ul>
<% @movies.each do |movie| %>
<li><%= movie %></li>
<% end %>
</ul>