File Manager

Path: /opt/chef.upgrade/embedded/lib/ruby/gems/2.3.0/gems/erubis-2.7.0/examples/basic/

Viewing File: example.escheme

<%
(let ((user "Erubis")
      (items '("<aaa>" "b&b" "\"ccc\""))
      (i 0))
 %>
<p>Hello <%= user %>!</p>
<table>
  <tbody>
<%
  (for-each
   (lambda (item)
     (set! i (+ i 1))
 %>
    <tr bgcolor="<%= (if (= (modulo i 2) 0) "#FFCCCC" "#CCCCFF") %>">
      <td><%= i %></td>
      <td><%= item %></td>
    </tr>
<%
   ) ; lambda end
   items) ; for-each end
 %>
  </tbody>
</table>
<%
) ; let end
%>