22 lines
493 B
Plaintext
22 lines
493 B
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title><%= title %></title>
|
|
<link rel='stylesheet' href='/stylesheets/style.css' />
|
|
</head>
|
|
<body>
|
|
<h1><%= title %></h1>
|
|
<p>Welcome to <%= title %></p>
|
|
<table class="table">
|
|
<%for(var i = 0; i < state.length; i++){%>
|
|
<tr>
|
|
<td><%= state[i] %></td>
|
|
<td><%= stime[i]%></td>
|
|
<td><%= fmri[i] %></td>
|
|
</tr>
|
|
<%}%>
|
|
</table>
|
|
<%- include('partials/menu') %>
|
|
</body>
|
|
</html>
|