SZMUNC/themes/tstyle/layout/partials/recent-posts.ejs
Saturneric 90f0f5f447 Add.
2020-09-01 00:38:50 +08:00

17 lines
456 B
Plaintext

<% if (site.posts.length > 0) { %>
<div id="recent-posts">
<h2>新闻速递</h2>
<% 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>
<% } %>