summaryrefslogtreecommitdiff
path: root/themes/hexo-theme-freemind.bithack/layout/_widget/recent_posts.ejs
blob: ab81c77b146f1184dd763d839347d31bc7d1a986 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<% if (site.posts.length){ %>
<div class="widget">
  <h4><%= __('recent_posts') %></h4>
  <ul class="entry list-unstyled">
    <% site.posts.sort('date', -1).limit(5).each(function(post){ %>
      <li>
        <a href="<%= config.root %><%= post.path %>" <% if (post.description) { %> title="<%= post.description %>" <% } %>><i class="fa fa-file-o"></i><%= truncate(post.title, 25) %></a>
      </li>
    <% }); %>
  </ul>
</div>
<% } %>