parent
356a225402
commit
1c2002eebb
|
@ -8,7 +8,7 @@
|
||||||
<ul class="card-category-list">
|
<ul class="card-category-list">
|
||||||
<li class="card-category-list-item" th:each="category,iterStat : ${categories}">
|
<li class="card-category-list-item" th:each="category,iterStat : ${categories}">
|
||||||
<a class="card-category-list-link" th:href="@{${category.status.permalink}}"
|
<a class="card-category-list-link" th:href="@{${category.status.permalink}}"
|
||||||
th:if="${categoryQuantity >= 0 && iterStat.index < categoryQuantity || categoryQuantity < 0}">
|
th:if="${categoryQuantity >= 0 && iterStat.index < categoryQuantity}">
|
||||||
<span class="card-category-list-name" th:text="${category.spec.displayName}"
|
<span class="card-category-list-name" th:text="${category.spec.displayName}"
|
||||||
th:title="${category.spec.displayName}"></span>
|
th:title="${category.spec.displayName}"></span>
|
||||||
<span class="card-category-list-count" th:text="${category.status.postCount}"></span>
|
<span class="card-category-list-count" th:text="${category.status.postCount}"></span>
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
<div class="card-tag-cloud">
|
<div class="card-tag-cloud">
|
||||||
<a style="font-size:1em;color:#d3d3d3" th:each="tag,iterStat : ${tags}"
|
<a style="font-size:1em;color:#d3d3d3" th:each="tag,iterStat : ${tags}"
|
||||||
th:href="@{${tag.status.permalink}}"
|
th:href="@{${tag.status.permalink}}"
|
||||||
th:if="${tagQuantity >= 0 && iterStat.index < tagQuantity || categoryQuantity < 0}"
|
th:if="${tagQuantity >= 0 && iterStat.index < tagQuantity}"
|
||||||
th:title="${tag.spec.displayName}">
|
th:title="${tag.spec.displayName}">
|
||||||
<!-- 角标 -->
|
<!-- 角标 -->
|
||||||
[[${tag.spec.displayName}]]<sup th:text="${tag.status.postCount}"></sup>
|
[[${tag.spec.displayName}]]<sup th:text="${tag.status.postCount}"></sup>
|
||||||
|
|
Loading…
Reference in New Issue