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.

14 lines
492 B

6 years ago
<% if (config.widgets && config.widgets.length){ %>
6 years ago
<%
5 years ago
let supportWidgets = ['author', 'category', 'list', 'music', 'tagcloud', 'toc', 'plain', 'related_posts'];
6 years ago
%>
6 years ago
<% config.widgets.forEach(function(item){ %>
6 years ago
<% if (item.enable != false){ %>
6 years ago
<% let widget_name = item.widget ? item.widget : 'plain'; %>
<% if (supportWidgets.indexOf(widget_name) > -1){ %>
<%- partial('../_widget/' + item.widget, {item: item}) %>
6 years ago
<% } %>
<% } %>
6 years ago
<% }) %>
<% } %>