Rinser/templates/rss.ejs

27 lines
694 B
Plaintext
Raw Normal View History

2015-07-21 09:50:51 +00:00
<!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>