Rinser/html/ejs/testcards.ejs

16 lines
477 B
Plaintext
Raw Normal View History

2015-08-12 12:04:17 +00:00
<h1><%= d.title %></h1>
<% d.items.forEach(function (item) { %>
<section class="card">
2015-12-21 10:03:16 +00:00
<h1><a href='<%=item.url%>' target="_blank"><%=item.title %></a></h1>
2015-08-12 12:04:17 +00:00
<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>
<% }) %>