Update Vendored Erubis to 2.6.6
This commit is contained in:
parent
c18c2f988d
commit
39c2138f88
300 changed files with 207 additions and 171 deletions
21
vendor/plugins/erubis/test/data/users-guide/example11.rhtml
vendored
Normal file
21
vendor/plugins/erubis/test/data/users-guide/example11.rhtml
vendored
Normal file
|
@ -0,0 +1,21 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<body>
|
||||
<h3>List</h3>
|
||||
<% if @list.nil? || @list.empty? %>
|
||||
<p>not found.</p>
|
||||
<% else %>
|
||||
<table>
|
||||
<tbody>
|
||||
<% @list.each_with_index do |item, i| %>
|
||||
<tr bgcolor="<%= i % 2 == 0 ? '#FCC' : '#CCF' %>">
|
||||
<td><%= item %></td>
|
||||
</tr>
|
||||
<% end %>
|
||||
</tbody>
|
||||
</table>
|
||||
<% end %>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue