summaryrefslogtreecommitdiff
path: root/themes/hexo-theme-freemind.bithack/layout/_partial/post/tag.ejs
blob: 8ed2903795bf7fd1e0830a1ac262658256f7bdfc (plain)
1
2
3
4
5
6
7
  <%
  var tags = [];
  item.tags.forEach(function(tag){
    tags.push('<li><a href="' + config.root + tag.path + '">' + tag.name + '<span>' + tag.length  + '</span></a></li>');
  });
  %>
  <%- tags.join(' ') %>