express-mini-message-board/views/index.ejs
2023-09-01 16:17:08 -07:00

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>