目录条
This commit is contained in:
parent
e4b9bda76e
commit
c03450cde6
|
@ -25,12 +25,13 @@
|
|||
|
||||
</div>
|
||||
<!-- 跳转到分类页 -->
|
||||
<a class="category-bar-more" href="#">更多</a></div>
|
||||
<!--<a class="category-bar-more" href="#">更多</a>-->
|
||||
</div>
|
||||
</div>
|
||||
<div class="article-sort-title" th:text="${category.spec.displayName}"></div>
|
||||
<div class="article-sort">
|
||||
<!-- 按照年份分组 -->
|
||||
<div class="article-sort-item year">等待halo提供数据</div>
|
||||
<!-- TODO 按照年份分组 需要 halo 提供归档数据-->
|
||||
<!--<div class="article-sort-item year">2022</div>-->
|
||||
<div class="article-sort-item" th:each="post : ${posts.items}">
|
||||
<a class="article-sort-item-img" th:href="${post.status.permalink}"
|
||||
th:title="${post.spec.title}">
|
||||
|
@ -51,7 +52,7 @@
|
|||
<a class="article-meta__tags" event.cancelbubble onclick="window.event.cancelBubble=!0"
|
||||
th:each="tag : ${post.tags}" th:href="${tag.status.permalink}">
|
||||
<span class="tags-punctuation">#</span>
|
||||
<th:block th:title="${tag.spec.displayName}"></th:block>
|
||||
[[${tag.spec.displayName}]]
|
||||
</a>
|
||||
<span class="article-meta__link">•</span>
|
||||
</div>
|
||||
|
|
|
@ -10,13 +10,12 @@
|
|||
<th:block th:with="categories = ${categoryFinder.listAll()}">
|
||||
|
||||
<div class="category-bar-item"
|
||||
th:id="${categoryItem.spec.displayName}"
|
||||
th:each="categoryItem : ${categories}">
|
||||
<a href="javascript:void(0);" th:text="${categoryItem.spec.displayName}"></a>
|
||||
th:each="categoryItem : ${categories}"
|
||||
th:id="${categoryItem.spec.displayName}">
|
||||
<a th:href="${categoryItem.status.permalink}" th:text="${categoryItem.spec.displayName}"></a>
|
||||
</div>
|
||||
|
||||
</th:block>
|
||||
|
||||
</div>
|
||||
<a class="category-bar-more" href="categories/default">更多</a>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue