12 lines
197 B
Plaintext
12 lines
197 B
Plaintext
|
<p>This is a test.</p>
|
||
|
|
||
|
<% if items.length > 0 %>
|
||
|
<ul>
|
||
|
<% items.each do |item| %>
|
||
|
<li><%= item.name %></li>
|
||
|
<% end %>
|
||
|
</ul>
|
||
|
<% else %>
|
||
|
<p>There are no items to display.</p>
|
||
|
<% end %>
|