Skip to content

Instantly share code, notes, and snippets.

@mb-dev
Last active December 11, 2015 12:39
Show Gist options
  • Save mb-dev/4602535 to your computer and use it in GitHub Desktop.
Save mb-dev/4602535 to your computer and use it in GitHub Desktop.
Russian Doll Caching - View - Before
<div class="post">
<%= render partial: 'post', locals: {post: @post} %>
<hr/>
<div class="comments">
<% @post.comments.each do |comment| %>
<div id="comment-<%=comment.id%>">
<%= comment.user.name %> says:
<p>
<%= comment.content %>
</p>
</div>
<% end %>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment