index.ejs
329 Bytes
<!DOCTYPE html>
<html>
<head>
<title><%= title %></title>
<link rel='stylesheet' href='/stylesheets/style.css' />
</head>
<body>
<h1><%= title %></h1>
<p><%= title %></p>
<%
for(name in list){
%>
<%= name+ "=" + list[name] %>
</br>
<%
}
%>
<br>
</body>
</html>