-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathview.erb
More file actions
25 lines (24 loc) · 589 Bytes
/
view.erb
File metadata and controls
25 lines (24 loc) · 589 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
<!DOCTYPE HTML>
<html lang="en">
<head>
<title>Simple Benchmark</title>
<meta charset="utf-8">
<meta name="description" content="This is an example of a meta description.">
</head>
<body>
<h1><%= header %></h1>
<% unless item.empty? %>
<ul>
<% for i in item %>
<% if i[:current] %>
<li><strong><%= i[:name] %></strong></li>
<% else %>
<li><a href="<%= i[:url] %>"><%= i[:name] %></a></li>
<% end %>
<% end %>
</ul>
<% else %>
<p>The list is empty.</p>
<% end %>
</body>
</html>