Rinser/html/ejs/runner.ejs

13 lines
486 B
Plaintext
Raw Normal View History

2015-07-27 12:49:21 +00:00
<h1><%= d.title %></h1>
<% d.items.forEach(function (item) { %>
<div class='row entry'>
<h4><a href='<%=item.url%>'><%=item.title %></a></h4>
<div class='u-full-width content' style='overflow:hidden;'><%-item.description-%></div>
<div class='info' style='font-size:75%;color:#bbbbbb;'>
<span class='author' ><%=item.author%></span>
<span class='date' ><%=item.date%></span>
</div>
</div>
<% }) %>