mirror of
https://gitlab.silvrtree.co.uk/martind2000/feedmaster.js.git
synced 2025-03-13 10:00:02 +00:00
12 lines
470 B
Plaintext
12 lines
470 B
Plaintext
<h1><%= d.title %></h1>
|
|
<% d.items.forEach(function (item) { %>
|
|
<div class='pure-u-1 entry'>
|
|
<h2><a href='<%=item.url%>'><%=item.title %></a></h2>
|
|
<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>
|
|
<% }) %>
|