2025-02-08 03:18:24 +00:00

33 lines
1.2 KiB
Plaintext
Executable File

<%- partial('_pre') %>
<section class="widget <%- item.class %> <%- page.widget_platform %>">
<%- partial('header', {item: item}) %>
<div class='content'>
<% site.pages.forEach(function(post){ %>
<% if (post.pid == item.pid) { %>
<article id="<%= post.layout %>" class="post article-type-<%= post.layout %>" itemscope itemprop="blogPost">
<section class="article typo">
<div class="article-entry" itemprop="articleBody">
<% if (item.content in post) { %>
<%- post[item.content] %>
<% } %>
</div>
</section>
</article>
<% } %>
<% }) %>
<% site.posts.forEach(function(post){ %>
<% if (post.pid == item.pid) { %>
<article id="<%= post.layout %>" class="post article-type-<%= post.layout %>" itemscope itemprop="blogPost">
<section class="article typo">
<div class="article-entry" itemprop="articleBody">
<% if (item.content in post) { %>
<%- post[item.content] %>
<% } %>
</div>
</section>
</article>
<% } %>
<% }) %>
</div>
</section>