recent_posts.ejs 399 B

1234567891011121314
  1. <% if (site.posts.length){ %>
  2. <div class="widget-wrap">
  3. <h3 class="widget-title"><%= __('recent_posts') %></h3>
  4. <div class="widget">
  5. <ul>
  6. <% site.posts.sort('date', -1).limit(5).each(function(post){ %>
  7. <li>
  8. <a href="<%- url_for(post.path) %>"><%= post.title || '(no title)' %></a>
  9. </li>
  10. <% }) %>
  11. </ul>
  12. </div>
  13. </div>
  14. <% } %>