blog/themes/grid/layout/archive.ejs

15 lines
582 B
Plaintext

<div class="flex mx-2 my-2 main-content">
<section class="w-3-4-a w-2-2-n w-2-2-m px-1">
<% if (!is_month()) { %>
<div class="uk-card uk-card-default uk-card-body uk-height-1-1">
<%- list_archives({type: 'monthly', order: '1', show_count: true, format: 'YYYY年MM月'}) %>
</div>
<% } else { %>
<%- partial('partial/post/list', {start: 1}) %>
<% } %>
</section>
<section class="w-1-4-a flex col-a hin him">
<%- partial('partial/side', {'noCategories': false, 'noTags': false}) %>
</section>
</div>