22 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <th:block xmlns:th="https://www.thymeleaf.org"
 | |
|           th:insert="~{common/layout :: layout (title = ${'分类:' + category.spec.displayName + ' - ' +site.title},
 | |
|        canonical = ${category.status.permalink}, content = ~{::content}, isPost = false)}">
 | |
|   <th:block th:fragment="content" th:with="isEmpty = ${#lists.isEmpty(posts)}">
 | |
|     <div th:if="${isEmpty}" class="card card-empty">
 | |
|       <i class="fa fa-inbox"></i>
 | |
|       该分类下没有文章,回<a th:href="${site.url}">主页</a>看看吧
 | |
|     </div>
 | |
|     <th:block th:unless="${isEmpty}">
 | |
|       <div class="card card-content main-title">
 | |
|         <ul class="breadcrumb">
 | |
|           <li><a th:href="@{/categories}"><i class="fa fa-th-large"></i>分类</a></li>
 | |
|           <li th:text="${category.spec.displayName}"></li>
 | |
|         </ul>
 | |
|       </div>
 | |
|       <th:block th:replace="~{main/article_list :: articleList (${posts.items}, false)}"/>
 | |
|       <th:block th:replace="~{main/pagination :: pagination (${posts}, ${category.status.permalink})}"/>
 | |
|     </th:block>
 | |
|   </th:block>
 | |
| </th:block>
 |