Created
May 11, 2021 16:39
-
-
Save armandofox/3727b1cf67ba36339f999c4be9623034 to your computer and use it in GitHub Desktop.
topmovies.html.erb
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- 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