File Manager

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

Viewing File: example.ephp

<%
   $user = "World";
   $list = array('<aaa>', 'b&b', '"ccc"');
%>
<p>Hello <%= $user %>!</p>
<table>
  <tbody>
    <% $i = 0 %>
    <% foreach ($list as $item) { %>
    <%   $i++; %>
    <tr bgcolor="<%= $i % 2 == 0 ? '#FFCCCC' : '#CCCCFF' %>">
      <td><%= $i %></td>
      <td><%== $item %></td>
    </tr>
    <% } %>
  </tbody>
</table>