Last active
July 9, 2020 13:52
-
-
Save bankair/b45ab796d9d554e37619a2e9f6bcacd5 to your computer and use it in GitHub Desktop.
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
<% @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