You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
multi-model/views/articles/index.ejs

33 lines
538 B

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<header>
<h1>Articles</h1>
<nav>
<ul>
<li>
<a href="/">Home</a>
</li>
<li>
<a href="/articles/new">Create a new article</a>
</li>
</ul>
</nav>
</header>
<main>
<h2>List of Articles</h2>
<ul>
<% for(var i = 0; i < articles.length; i++){ %>
<li>
<a href="/articles/<%=articles[i]._id%>"><%=articles[i].title%></a>
</li>
<% } %>
</ul>
</main>
</body>
</html>