You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
716 B

6 years ago
<% if (site.tags.length){ %>
<%
var plats = [];
if (item.display) {
item.display.forEach(function(plat){
plats.push(plat);
});
} else {
plats = ['desktop', 'mobile'];
}
%>
<section class="widget <%- theme.style.shadow.card ? 'card-shadow' : '' %> <%- theme.style.blur && theme.style.blur.widget ? 'widget-blur' : '' %> <%- item.class %> <%- plats.join(' ') %>">
4 years ago
<%- partial('header', {item: item}) %>
4 years ago
<div class='content'>
6 years ago
<%- tagcloud(site.tags, {
4 years ago
min_font: item.min_font,
max_font: item.max_font,
color: item.color,
start_color: item.start_color,
end_color: item.end_color,
6 years ago
}) %>
</div>
</section>
<% } %>