2015-07-27 12:49:21 +00:00
|
|
|
<h1><%= d.title %></h1>
|
|
|
|
<% d.items.forEach(function (item) { %>
|
2015-08-07 12:48:37 +00:00
|
|
|
<div class="mui-row">
|
2016-03-15 11:33:52 +00:00
|
|
|
<h2><a href='<%=item.url%>' target="_top"><%=item.title %></a></h2>
|
2015-08-07 12:48:37 +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>
|
|
|
|
</div>
|
2015-07-27 12:49:21 +00:00
|
|
|
<% }) %>
|