halo-theme-dream2.0
Version:
梦之城,童话梦境,动漫类型博客主题。
27 lines (26 loc) • 1.36 kB
HTML
<th:block xmlns:th="https://www.thymeleaf.org"
th:insert="~{common/layout :: layout (title = '标签 - ' + ${site.title}, canonical = @{/tags}, content = ~{::content}, isPost = false)}">
<th:block th:fragment="content"
th:with="isEmpty = ${#lists.isEmpty(tags)}, enableTagsColor = ${theme.config.page_config.enable_tags_tag_color}">
<div th:if="${isEmpty}" class="card card-empty">
<i class="ri-inbox-2-fill"></i>
还没有创建过标签,回<a th:href="${site.url}">主页</a>看看吧
</div>
<th:block th:unless="${isEmpty}">
<div class="card card-content">
<div class="card-tab">
<div>文章标签</div>
</div>
<div class="tags-field">
<a th:each="tag : ${tags}" class="tags" th:href="${tag.status.permalink}">
<span class="tag" th:text="${tag.spec.displayName}"
th:style="${(enableTagsColor && tag.spec.color != '#ffffff')? 'color: ' + tag.spec.color +'; background: ' + tag.spec.color +'20' : ''}"></span>
<span class="tag is-grey" th:text="${tag.postCount != null ? tag.postCount : 0}"
th:style="${(enableTagsColor && tag.spec.color != '#ffffff')? 'background: ' + tag.spec.color +'CC' : ''}"></span>
</a>
</div>
</div>
</th:block>
</th:block>
</th:block>