File: code.utml

package info (click to toggle)
node-utml 0.2.0~gite9f7c3d-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 112 kB
  • ctags: 14
  • sloc: makefile: 2; sh: 2
file content (17 lines) | stat: -rw-r--r-- 353 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<% var pageTitle = "UTML - Code"; %>
<html>
<head>
  <title><%= pageTitle %></title>
</head>
<body>
  <h1><%= title %></h1>
  
  <ul>
    <% for(var i = 0; i < people.length; i++) { 
    	var person = people[i]; %>
      <li><%= person.name %> 
	      <% if (person.email) { %>&lt;<%= person.email %>&gt;<% } %></li>
    <% } %>
  </ul>
</body>
</html>