summaryrefslogtreecommitdiff
path: root/themes/hexo-theme-freemind.bithack/layout/_widget/tagcloud.ejs
blob: 5089feba5f7807b7edd5df73e67ee50a28335fe5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<% if (site.tags.length){ %>
	<div class="widget">
		<h4><%= __('tagcloud') %></h4>
		<ul class="tag_box inline list-unstyled">		
		<% site.tags.random().limit(20).each(function(item){ %>
			<li><a href="<%- config.root %><%- item.path %>"><%= item.name %><span><%= item.posts.length %></span></a></li>
		<% }); %>
		<% if (site.tags.length > 20) { %>
		   <li><a href="/tags">...<span><%= site.tags.length %></span></a></li>
		<% } %> 
		</ul>
	</div>
<% } %>