This repository has been archived on 2024-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
redemption/categories.ftl

22 lines
737 B
Plaintext

<#include "module/macro.ftl">
<@layout title="分类列表 - ${blog_title!}">
<main>
<#include "module/header.ftl">
<div class="tags">
<ul>
<@categoryTag method="list">
<#if categories?? && categories?size gt 0>
<#list categories as category>
<li>
<a href="${category.fullPath!}">
${category.name!} <span class="count">${category.postCount!0}</span>
</a>
</li>
</#list>
</#if>
</@categoryTag>
</ul>
</div>
</main>
</@layout>