hexo/themes/volantis/layout/_widget/related_posts.ejs
2025-02-08 03:18:24 +00:00

10 lines
396 B
Plaintext
Executable File

<% if(page.layout == 'post' && page.content && page.path != undefined){ %>
<%- partial('_pre') %>
<section class="widget <%- item.class %> <%- page.widget_platform %>">
<%- partial('header', {item: item}) %>
<div class="content">
<%- popular_posts( { maxCount: item.max_count , ulClass: 'popular-posts' , PPMixingRate: 0.2 } , page ) %>
</div>
</section>
<% } %>