13 lines
486 B
Plaintext
13 lines
486 B
Plaintext
|
|
||
|
<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>
|
||
|
<% }) %>
|