2015-07-27 12:49:21 +00:00
|
|
|
<h1><%= d.title %></h1>
|
|
|
|
<% d.items.forEach(function (item) { %>
|
2015-07-27 15:47:47 +00:00
|
|
|
<div class='pure-u-1 entry'>
|
|
|
|
<h2><a href='<%=item.url%>'><%=item.title %></a></h2>
|
2015-07-27 12:49:21 +00:00
|
|
|
<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>
|
|
|
|
<% }) %>
|