-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmeat.html.erb
More file actions
31 lines (28 loc) · 766 Bytes
/
meat.html.erb
File metadata and controls
31 lines (28 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<a name="top"></a>
<div id="header">
<div id="sidebar">
<h2>Call us at</h2>
<h1>(02) 253-3720</h1>
<h2>for your free sample!</h2>
</div>
<img src="img/<%= header %>.png">
</div>
<div id="main">
<h1><span class="red"><%= meat %></span></h1>
<% for variant in variants %>
<div class="item">
<img src="<%= variant["img"] %>">
<h3><%= variant["name"] %></h3>
<br />
<% unless variant["description"].nil? %>
<p><strong>Description:</strong> <%= variant["description"] %></p>
<% end %>
<% unless variant["origin"].nil? %>
<p><strong>Origin:</strong> <%= variant["origin"] %></p>
<% end %>
</div>
<% end %>
<div class="item">
<a href="#top">Back to Top</a>
</div>
</div>