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.

36 lines
1.3 KiB

<%- partial('_pre') %>
5 years ago
<% page.comments = false; %>
4 years ago
<div class='l_main<%- page.sidebar == false ? ' no_sidebar' : '' %>'>
5 years ago
<% if (site.posts && site.posts.length > 0) { %>
5 years ago
<% if (page.layout == 'tag') { %>
<section class="post-list <%- theme.layout.multiple_columns ? 'multiple-columns' : '' %>">
5 years ago
<div class='post-wrapper'>
4 years ago
<article id="archive-page" class="post article white-box reveal <%- theme.style.body.effect.join(' ') %>">
5 years ago
<section class="archive">
<div class="archive-item archive-year mark">
<h2><%- page.title %></h2>
</div>
4 years ago
<div class="archive-item all-tags">
4 years ago
<% let tc = theme.widget.tagcloud; %>
<%- tagcloud(site.tags, {
min_font: tc.min_font,
max_font: tc.max_font,
color: tc.color,
start_color: tc.start_color,
end_color: tc.end_color,
}) %>
5 years ago
</div>
<br>
<%- page.content %>
</section>
</article>
</div>
</section>
<% } else { %>
<%- partial('_partial/archive') %>
<% } %>
5 years ago
<% } %>
5 years ago
</div>
<%- partial('_partial/side') %>
5 years ago
<%- partial('_partial/footer', null, {cache: !config.relative_link}) %>