Sha256: d2c226e9f3ee82e40cf52e80956a0fe4de04df7fe9b1218ccfdaefc9acdc4aab
Contents?: true
Size: 527 Bytes
Versions: 34
Compression:
Stored size: 527 Bytes
Contents
<h2><%= title %></h2> <h3>Ingredientes</h3> <% if notes.present? %> <%= notes %> <% end %> <table class="table"> <thead> <tr> <th scope="col">Ingrediente</th> <th scope="col">Medida</th> </tr> </thead> <tbody> <% ingredients.each do |ingredient| %> <tr> <th scope="row"><%= ingredient.name %></th> <td><%= ingredient.measure %></td> </tr> <% end %> </tbody> </table> <h3>Preparo</h3> <ol> <% steps.each do |step| %> <li><%= step %></li> <% end %> </ol>
Version data entries
34 entries across 34 versions & 1 rubygems