You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
427 B
21 lines
427 B
<div class="container">
|
|
|
|
<ul>
|
|
<% @movies.each do |movie| %>
|
|
<section class="movie">
|
|
<div class="summary">
|
|
<h2>
|
|
<%= movie.title %>
|
|
</h2>
|
|
<h3>
|
|
<%= total_gross(movie) %>
|
|
</h3>
|
|
<p>
|
|
<%= truncate(movie.description, length: 150, separator: ' ') %>
|
|
</p>
|
|
</div>
|
|
</section>
|
|
<% end %>
|
|
</ul>
|
|
</div>
|