vulcan/themes/gstyle/layout/widget/recent_posts.ejs

14 lines
401 B
Plaintext
Raw Normal View History

2017-09-01 10:16:00 +00:00
<% if (site.posts.length){ %>
<div class="widget-wrap">
<h3 class="widget-title"><%= __('recent_posts') %></h3>
<div class="widget">
<ul>
<% site.posts.sort('date', -1).limit(5).each(function(post){ %>
<li>
<a href="<%- url_for(post.path) %>"><%= post.title || __('no-title') %></a>
</li>
<% }) %>
</ul>
</div>
</div>
<% } %>