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
456 B

6 years ago
<% if (config.widgets){ %>
6 years ago
<%
let supportWidgets = ['author', 'category', 'list', 'music', 'tagcloud', 'toc', 'plain'];
%>
6 years ago
<% (config.widgets||[]).forEach(function(item){ %>
<% 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
<% }) %>
<% } %>