1
0
Fork 0
template_engine_comparison/templates/erb/big.erb

26 lines
527 B
Plaintext
Raw Normal View History

2013-12-13 18:43:03 +00:00
<!DOCTYPE html>
<html>
<head>
<title>Customers List</title>
</head>
<body>
<% customers.each do |customer| %>
<dl>
<dt>Name:</dt>
2013-12-13 19:40:54 +00:00
<dd><%= customer['name'] %></dd>
2013-12-13 18:43:03 +00:00
<dt>Age:</dt>
2013-12-13 19:40:54 +00:00
<dd><%= customer['age'] %></dd>
2013-12-13 18:43:03 +00:00
<dt>Address:</dt>
<dd>
2013-12-13 19:40:54 +00:00
<%= customer['zip'] %>
<%= customer['country'] %>
<%= customer['city'] %>
<%= customer['address'] %>
2013-12-13 18:43:03 +00:00
</dd>
<dt>Employer:</dt>
2013-12-13 19:40:54 +00:00
<dd><%= customer['employer'] %></dd>
2013-12-13 18:43:03 +00:00
</dl>
<% end %>
</body>
</html>