aboutsummaryrefslogtreecommitdiffstats
path: root/node_modules/ejs/examples/list.ejs
blob: d571330aeea2bc09726c6d825df50cce9ad8388b (plain)
1
2
3
4
5
6
7
<% if (names.length) { %>
  <ul>
    <% names.forEach(function(name){ %>
      <li><%= name %></li>
    <% }) %>
  </ul>
<% } %>