vulcan/themes/gstyle/layout/partials/recent-posts.ejs

17 lines
456 B
Plaintext
Raw Normal View History

2017-09-01 10:16:00 +00:00
<% if (site.posts.length > 0) { %>
<div id="recent-posts">
<h1>Recent Posts</h1>
<% site.posts.sort('date', -1).limit(10).each(function(post) { %>
<div class="recent-post-item">
<a href="<%=config.root + post.path%>"><%=post.title%></a>
<% if (post.date) { %>
<time datetime="<%=post.date.toJSON()%>">
<%=date(post.date)%>
</time>
<% } %>
</div>
<% }); %>
</div>
<% } %>