hexo-theme-icarus/layout/common/widget.ejs

7 lines
378 B
Plaintext
Raw Normal View History

2018-10-16 05:28:42 +00:00
<% if (get_widgets(position).length) { %>
<div class="column is-4-tablet is-4-desktop is-3-widescreen is-hidden-mobile <%= column_count() === 3 && position === 'right' ? 'is-hidden-tablet-only is-hidden-desktop-only' : '' %>">
<% get_widgets(position).forEach(widget => {%>
<%- partial('widget/' + widget.type, { widget, post: page }) %>
<% }) %>
</div>
<% } %>