Skip to content

Instantly share code, notes, and snippets.

@yamagata-kozo
Created December 18, 2012 03:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yamagata-kozo/4324779 to your computer and use it in GitHub Desktop.
Save yamagata-kozo/4324779 to your computer and use it in GitHub Desktop.
<h1>Fruits (eco)</h1>
<table>
<thead>
<tr>
<th>Name</th>
<th>Price</th>
<th>Stock</th>
</tr>
</thead>
<tbody>
<% for fruit in @fruits: %>
<tr>
<td><%= fruit.name %></td>
<td>&yen;<%= fruit.price %></td>
<td><%= fruit.stock %></td>
</tr>
<% end %>
</tbody>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment