blog/themes/chameleon/layout/index.ejs

17 lines
320 B
Plaintext

<div class="archive-container">
<%- partial('_partial/header', {}, { cache: true }) %>
<hr class="header-hr"/>
<h2>Recent posts:</h2>
<%- list_posts({
amount: 10,
class: 'index'
}) %>
<br/>
<h2>Tags:</h2>
<%- list_tags({
amount: 0,
class: 'index',
transform: titlecase
}) %>
</div>