文件
halo-theme/theme-terminal/templates/categories.html
T
2025-06-27 18:32:09 +08:00

17 行
512 B
HTML

<!DOCTYPE html>
<html
xmlns:th="https://www.thymeleaf.org"
th:replace="~{modules/layout :: html(title = |#{page.categories.title} - ${site.title}|, header = null, content = ~{::content}, footer = null)}"
>
<th:block th:fragment="content">
<div class="content">
<div class="post">
<h1 class="post-title">所有分类</h1>
<ul>
<li th:replace="~{modules/category-tree :: single(categories=${categories})}"></li>
</ul>
</div>
</div>
</th:block>
</html>