mirror of
https://gitlab.silvrtree.co.uk/martind2000/vulcan.git
synced 2025-02-05 12:40:14 +00:00
17 lines
456 B
Plaintext
17 lines
456 B
Plaintext
|
|
<% 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>
|
|
<% } %>
|