blog/themes/grid/layout/archive.ejs
2021-04-08 09:45:39 +08:00

15 lines
560 B
Plaintext

<div class="uk-flex mx-2 my-2 main-content">
<section class="uk-width-3-4 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="uk-width-1-4">
<%- partial('partial/side', {'noCategories': false, 'noTags': false}) %>
</section>
</div>