Skip to content

Instantly share code, notes, and snippets.

@starwels
Last active March 18, 2020 18:05
Show Gist options
  • Save starwels/970aa768850702b9adf993381ec8e189 to your computer and use it in GitHub Desktop.
Save starwels/970aa768850702b9adf993381ec8e189 to your computer and use it in GitHub Desktop.
<div>
posts: <%= @posts.size %> <br>
<% @posts.each do |post| %>
<%= post['title'] %>
<hr>
<%= post['body'] %>
<%= post['status'] %>
<hr>
comments: <%= post['comments'].size %> <br>
<% post['comments'].each do |comment| %>
<%= comment['body'] %>
<% end %>
<hr>
<% end %>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment