Rinser/html/ejs/testcards.ejs
2015-08-12 13:04:17 +01:00

16 lines
461 B
Plaintext

<h1><%= d.title %></h1>
<% d.items.forEach(function (item) { %>
<section class="card">
<h1><a href='<%=item.url%>'><%=item.title %></a></h1>
<div class=' 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>
</section>
<% }) %>