Skip to content

Instantly share code, notes, and snippets.

@armandofox
Created May 11, 2021 16:39
Show Gist options
  • Save armandofox/3727b1cf67ba36339f999c4be9623034 to your computer and use it in GitHub Desktop.
Save armandofox/3727b1cf67ba36339f999c4be9623034 to your computer and use it in GitHub Desktop.
topmovies.html.erb
<!-- a cacheable partial for top movies -->
<%- cache('top_moviegoers') do %>
<ul id="topmovies">
<%- @top_5.each do |movie| %>
<li> <%= movie.name %> </li>
<% end %>
</ul>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment