index.ejs
452 Bytes
<!DOCTYPE html>
<html>
<head>
<title><%= title %></title>
<link rel='stylesheet' href='/stylesheets/style.css' />
</head>
<body>
<h1><%= title %></h1>
<p>Welcome to <%= title %></p>
<ul>
<% Calendars.forEach(function(dat) { %>
<form name="paging" action="/calendar" method="post">
<input type="submit" name='id' value=<%= dat.id %> />
</form>
<% }); %>
</ul>
</body>
</html>