27 lines
694 B
Plaintext
27 lines
694 B
Plaintext
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Untitled Document</title>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="description" content="">
|
||
|
<meta name="keywords" content="">
|
||
|
<link rel="stylesheet" media="all" href="/public/stylesheets/style.css">
|
||
|
</head>
|
||
|
<body>
|
||
|
<p><%= title %></p>
|
||
|
|
||
|
<% items.forEach(function (item) { %>
|
||
|
|
||
|
<div class='entry'>
|
||
|
<p class='title'><a href='<%=item.url%>'><%=item.title %></a></p>
|
||
|
<div class='content'><%-item.description-%></div>
|
||
|
<div class='info'>
|
||
|
<span class='author'><%=item.author%></span>
|
||
|
<span class='date'><%=item.date%></span>
|
||
|
</div>
|
||
|
</div>
|
||
|
<% }) %>
|
||
|
|
||
|
</body>
|
||
|
</html>
|