Rinser/templates/rss.ejs

38 lines
1.2 KiB
Plaintext
Raw Normal View History

2015-07-21 09:50:51 +00:00
<!DOCTYPE html>
<html>
<head>
2015-07-21 10:26:41 +00:00
<title><%=description%></title>
2015-07-21 09:50:51 +00:00
<meta charset="UTF-8">
<meta name="description" content="">
<meta name="keywords" content="">
2015-07-21 10:26:41 +00:00
<link href="//fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
<!-- CSS
-->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/skeleton.css">
2015-07-21 10:44:55 +00:00
<style>
.info {border-bottom:1px solid #bbbbbb; padding-bottom:}
.entry {padding-bottom:16px;}
</style>
2015-07-21 09:50:51 +00:00
</head>
<body>
2015-07-21 10:26:41 +00:00
<div class="container">
<h1><%= title %></h1>
2015-07-21 09:50:51 +00:00
<% items.forEach(function (item) { %>
2015-07-21 10:26:41 +00:00
<div class='row entry'>
<h4><a href='<%=item.url%>'><%=item.title %></a></h4>
<div class='u-full-width content'><%-item.description-%></div>
<div class='info' style='font-size:75%;'>
<span class='author' ><%=item.author%></span>
<span class='date' ><%=item.date%></span>
2015-07-21 09:50:51 +00:00
</div>
</div>
<% }) %>
2015-07-21 10:26:41 +00:00
</div>
2015-07-21 09:50:51 +00:00
</body>
</html>