Skip to content

Instantly share code, notes, and snippets.

@bankair
Last active July 9, 2020 13:52
Show Gist options
  • Save bankair/b45ab796d9d554e37619a2e9f6bcacd5 to your computer and use it in GitHub Desktop.
Save bankair/b45ab796d9d554e37619a2e9f6bcacd5 to your computer and use it in GitHub Desktop.
<% @recipes.each do |recipe| %>
<article>
<h2><%= recipe.title %></h2>
<ul>
<% recipe.ingredients.each do |ingredient| %>
<li><%= ingredient.name %> <small>(<%= ingredient.quantity %>)</small></li>
<% end %>
</ul>
</article>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment