summaryrefslogtreecommitdiff
path: root/themes/hexo-theme-freemind.bithack/layout/_widget/links.ejs
blob: 493bf2623b9a8695d70a69219d52a164d8949fc1 (plain)
1
2
3
4
5
6
7
8
9
10
<% if (theme.links.length){ %>
<div class="widget">
	<h4><%= __('links') %></h4>
	<ul class="blogroll list-unstyled">
	<% for (var i in theme.links){ %>
		<li><i class="<%- theme.links[i].icon %>"></i><a href="<%- theme.links[i].url %>" title="<%- theme.links[i].intro %>" target="_blank"]);"><%= theme.links[i].title %></a></li>
	<% } %>
	</ul>
</div>
<% } %>