33 lines
714 B
Text
33 lines
714 B
Text
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title><%= title %></title>
|
|
<link rel="stylesheet" href="/stylesheets/style.css" />
|
|
</head>
|
|
<body>
|
|
<h1><%= title %></h1>
|
|
<p>Welcome to <%= title %></p>
|
|
<br />
|
|
<% messages.forEach(message => { %>
|
|
<h2><%= message.text %></h2>
|
|
<p>by <%= message.user %></p>
|
|
<p>posted <%= message.added.toDateString() %></p>
|
|
<br />
|
|
<% }) %>
|
|
<br />
|
|
<a
|
|
href="/new"
|
|
style="
|
|
font-size: 1.5rem;
|
|
border-style: solid;
|
|
border-color: black;
|
|
border-width: 1px;
|
|
border-radius: 5px;
|
|
padding: 0.5rem;
|
|
text-decoration: none;
|
|
color: black;
|
|
"
|
|
>New</a
|
|
>
|
|
</body>
|
|
</html>
|