recent_posts.ejs 1010 B

123456789101112131415161718192021
  1. <% if (site.posts.length){ %>
  2. <div class="widget-wrap">
  3. <h3 class="widget-title"><%= __('sidebar.recents') %></h3>
  4. <div class="widget">
  5. <ul id="recent-post">
  6. <% site.posts.sort('date', -1).limit(5).each(function(post){ %>
  7. <li>
  8. <div class="item-thumbnail">
  9. <%- partial('../_partial/post/thumbnail.ejs', {post: post}) %>
  10. </div>
  11. <div class="item-inner">
  12. <p class="item-category"><%- list_categories(post.categories, {show_count: false, depth:2, class: 'article-category', style: 'none', separator: '<i class="icon" id="icon-angle-right"></i>'}) %></p>
  13. <p class="item-title"><a href="<%- url_for((post.link?post.link:post.path)) %>" class="title"><%= post.title %></a></p>
  14. <p class="item-date"><time datetime="<%= date_xml(post.date) %>" itemprop="datePublished"><%= date(post.date) %></time></p>
  15. </div>
  16. </li>
  17. <% }) %>
  18. </ul>
  19. </div>
  20. </div>
  21. <% } %>