14 lines
484 B
Plaintext
14 lines
484 B
Plaintext
<h1><%= d.title %></h1>
|
|
<% d.items.forEach(function (item) { %>
|
|
<div class="mui-row">
|
|
<h2><a href='<%=item.url%>' target="_top"><%=item.title %></a></h2>
|
|
<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>
|
|
</div>
|
|
<% }) %>
|