commit
96db873fea
|
@ -2,13 +2,13 @@
|
|||
<html lang="en" xmlns:th="http://www.thymeleaf.org">
|
||||
<!-- 目录 -->
|
||||
<div class="card-widget card-categories" th:fragment="categories"
|
||||
th:with="categories = ${categoryFinder.listAll()}, categoryQuantity = ${#conversions.convert(theme.config.sidebar.categoryQuantity, 'java.lang.Integer')}">
|
||||
${categoryFinder.list(1, categoryQuantity)}>
|
||||
<div class="item-headline"><i class="iconfont icon-folder-open"></i><span>分类</span></div>
|
||||
<div class="aside-list">
|
||||
<ul class="card-category-list">
|
||||
<li class="card-category-list-item" th:each="category,iterStat : ${categories}">
|
||||
<a class="card-category-list-link" th:href="@{${category.status.permalink}}"
|
||||
th:if="${categoryQuantity >= 0 && iterStat.index < categoryQuantity}">
|
||||
th:if="${categoryQuantity >= 0 && iterStat.index < categoryQuantity || categoryQuantity < 0}">
|
||||
<span class="card-category-list-name" th:text="${category.spec.displayName}"
|
||||
th:title="${category.spec.displayName}"></span>
|
||||
<span class="card-category-list-count" th:text="${category.status.postCount}"></span>
|
||||
|
@ -20,4 +20,4 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
</html>
|
||||
</html>
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
<div class="card-tag-cloud">
|
||||
<a style="font-size:1em;color:#d3d3d3" th:each="tag,iterStat : ${tags}"
|
||||
th:href="@{${tag.status.permalink}}"
|
||||
th:if="${tagQuantity >= 0 && iterStat.index < tagQuantity}"
|
||||
th:if="${tagQuantity >= 0 && iterStat.index < tagQuantity || categoryQuantity < 0}"
|
||||
th:title="${tag.spec.displayName}">
|
||||
<!-- 角标 -->
|
||||
[[${tag.spec.displayName}]]<sup th:text="${tag.status.postCount}"></sup>
|
||||
|
@ -20,4 +20,4 @@
|
|||
</th:block>
|
||||
|
||||
|
||||
</html>
|
||||
</html>
|
||||
|
|
Loading…
Reference in New Issue