结发受长生 de8e1887a6 标签修改
2018-06-05 00:48:00 +08:00

28 lines
658 B
Plaintext

<% if (theme.blogrolls && theme.blogrolls.length > 0) { %>
<%
var extraClass = '';
if (idx.current % 3 === 0) {
extraClass += ' first';
if (idx.current >= 3) {
extraClass += ' newline';
}
}
%>
<div class="widget blogroll<%= extraClass %>">
<h3 class="title"><%= __('blogroll') %></h3>
<ul class="entry">
<% theme.blogrolls.forEach(function(item){ %>
<%
var description, linkURL
for (var tmp in item) {
description = tmp;
linkURL = item[tmp];
}
%>
<li><a href="<%- linkURL %>" target="_blank"><%= description %></a></li>
<% }); %>
</ul>
</div>
<% } else {
idx.current -= 1
} %>