162 lines
9.1 KiB
HTML
Raw Normal View History

2023-03-25 12:46:08 +08:00
<th:block xmlns:th="https://www.thymeleaf.org"
2023-03-27 12:10:21 +08:00
th:fragment="articleList (posts)">
2023-03-23 18:25:48 +08:00
<th:block th:each="post : ${posts}"
2023-03-24 20:25:04 +08:00
th:with="thumbnail = ${#strings.isEmpty(post.spec.cover) ? #strings.isEmpty(theme.config.post.default_thumbnail) ? '' : theme.config.post.default_thumbnail + '?id=' + postStat.index : post.spec.cover},
thumbnail_mode = ${(theme.config.post.top_thumbnail_mode == 'grid' || (!post.spec.pinned && theme.config.post.thumbnail_mode == 'grid'))? 'grid' : !#strings.isEmpty(post.metadata.annotations.get('thumbnail_mode'))? post.metadata.annotations.get('thumbnail_mode') : post.spec.pinned ? theme.config.post.top_thumbnail_mode : theme.config.post.thumbnail_mode}">
<div th:if="${!#strings.isEmpty(thumbnail) && thumbnail_mode == 'back'}" class="card widget card-cover">
<a th:href="${post.status.permalink}">
<div class="cover-image" th:style="'background-image: url(' + ${thumbnail} + ')'"></div>
<div class="details">
<h2 class="title"><span class="top" th:if="${post.spec.pinned}">置顶</span>[[${post.spec.title}]]</h2>
<ul class="breadcrumb">
<li th:text="${#dates.format(post.spec.publishTime, 'yyyy-MM-dd HH:mm')}"></li>
<li><i class="fa fa-eye"></i>[[${post.stats.visit}]]</li>
<li th:if="${post.spec.allowComment}" class="is-hidden-mobile"><i class="fa fa-comments-o"></i>[[${post.stats.comment}]]
</li>
<li><i class="fa fa-thumbs-o-up"></i>[[${post.stats.upvote}]]</li>
<li
th:with="heat= ${24+post.stats.visit*0.1+post.stats.upvote*2+post.stats.comment*3}, heatColor= '#'+${(heat < 37)? 'ffa87e' : (heat < 120)? 'fb734a' : 'e0081c'}"
th:style="'color: ' + ${heatColor}">[[${heat}]]℃
</li>
</ul>
</div>
</a>
<div th:if="${!#lists.isEmpty(post.categories)}" class="category">
<a th:each="cy : ${post.categories}" th:href="${cy.status.permalink}" th:text="${cy.spec.displayName}"></a>&nbsp;
</div>
</div>
<div
th:if="${!#strings.isEmpty(thumbnail) && (thumbnail_mode == 'small' || (thumbnail_mode == 'small-alter' && postStat.index % 2 == 0))}"
class="card widget card-small">
<a th:href="${post.status.permalink}">
<div class="small-image" th:style="'background-image: url(' + ${thumbnail} + ')'"></div>
</a>
<div class="card-content main">
<h2 class="title">
<span class="top" th:if="${post.spec.pinned}">置顶</span><a
th:href="${post.status.permalink}" th:text="${post.spec.title}"></a>
</h2>
<div class="main-content" th:text="${post.status.excerpt}"></div>
2023-03-24 20:25:04 +08:00
<hr/>
<div class="meta">
<ul class="breadcrumb">
<li th:text="${#dates.format(post.spec.publishTime, 'yyyy-MM-dd HH:mm')}"></li>
<li><i class="fa fa-eye"></i>[[${post.stats.visit}]]</li>
<li th:if="${post.spec.allowComment}" class="is-hidden-mobile"><i class="fa fa-comments-o"></i>[[${post.stats.comment}]]
</li>
<li><i class="fa fa-thumbs-o-up"></i>[[${post.stats.upvote}]]</li>
<li
th:with="heat= ${24+post.stats.visit*0.1+post.stats.upvote*2+post.stats.comment*3}, heatColor= '#'+${(heat < 37)? 'ffa87e' : (heat < 120)? 'fb734a' : 'e0081c'}"
th:style="'color: ' + ${heatColor}">[[${heat}]]℃
</li>
</ul>
<div th:if="${!#lists.isEmpty(post.categories)}" class="level-item is-hidden-mobile">
<a th:each="cy : ${post.categories}" th:href="${cy.status.permalink}" th:text="${cy.spec.displayName}"></a>&nbsp;
</div>
</div>
</div>
</div>
<div
th:if="${!#strings.isEmpty(thumbnail) && (thumbnail_mode == 'small-right' || (thumbnail_mode == 'small-alter' && postStat.index % 2 == 1))}"
class="card widget card-small">
<div class="card-content main">
<h2 class="title">
<span class="top" th:if="${post.spec.pinned}">置顶</span><a
th:href="${post.status.permalink}" th:text="${post.spec.title}"></a>
</h2>
<div class="main-content" th:text="${post.status.excerpt}"></div>
2023-03-24 20:25:04 +08:00
<hr/>
<div class="meta">
<ul class="breadcrumb">
<li th:text="${#dates.format(post.spec.publishTime, 'yyyy-MM-dd HH:mm')}"></li>
<li><i class="fa fa-eye"></i>[[${post.stats.visit}]]</li>
<li th:if="${post.spec.allowComment}" class="is-hidden-mobile"><i class="fa fa-comments-o"></i>[[${post.stats.comment}]]
</li>
<li><i class="fa fa-thumbs-o-up"></i>[[${post.stats.upvote}]]</li>
<li
th:with="heat= ${24+post.stats.visit*0.1+post.stats.upvote*2+post.stats.comment*3}, heatColor= '#'+${(heat < 37)? 'ffa87e' : (heat < 120)? 'fb734a' : 'e0081c'}"
th:style="'color: ' + ${heatColor}">[[${heat}]]℃
</li>
</ul>
<div th:if="${!#lists.isEmpty(post.categories)}" class="level-item is-hidden-mobile">
<a th:each="cy : ${post.categories}" th:href="${cy.status.permalink}" th:text="${cy.spec.displayName}"></a>&nbsp;
</div>
</div>
</div>
<a th:href="${post.status.permalink}">
<div class="small-image" th:style="'background-image: url(' + ${thumbnail} + ')'"></div>
</a>
</div>
2023-03-27 12:10:21 +08:00
<a th:if="${post.spec.pinned && thumbnail_mode == 'fold'}" class="card widget card-fold"
th:href="${post.status.permalink}">
2023-03-24 20:25:04 +08:00
<h2 class="title"><span class="top">置顶</span>
<p th:text="${post.spec.title}"></p></h2>
<p th:text="${#dates.format(post.spec.publishTime, 'yyyy-MM-dd')}"></p>
</a>
2023-03-27 12:10:21 +08:00
<div
th:if="${(#strings.isEmpty(thumbnail) && !(post.spec.pinned && thumbnail_mode == 'fold')) || #strings.isEmpty(thumbnail_mode) || thumbnail_mode == 'default'}"
class="card widget">
2023-03-24 20:25:04 +08:00
<a th:if="${!#strings.isEmpty(thumbnail)}" class="thumbnail" th:href="${post.status.permalink}">
<div class="thumbnail-image" th:style="'background-image: url(' + ${thumbnail} + ')'">
</div>
</a>
<div class="card-content main">
<h2 class="title">
<span class="top" th:if="${post.spec.pinned}">置顶</span><a
th:href="${post.status.permalink}" th:text="${post.spec.title}"></a>
</h2>
<div class="meta">
<ul class="breadcrumb">
<li th:text="${#dates.format(post.spec.publishTime, 'yyyy-MM-dd HH:mm')}"></li>
<li><i class="fa fa-eye"></i>[[${post.stats.visit}]]</li>
<li th:if="${post.spec.allowComment}" class="is-hidden-mobile"><i class="fa fa-comments-o"></i>[[${post.stats.comment}]]
</li>
<li class="is-hidden-mobile"><i class="fa fa-thumbs-o-up"></i>[[${post.stats.upvote}]]</li>
<li
th:with="heat= ${24+post.stats.visit*0.1+post.stats.upvote*2+post.stats.comment*3}, heatColor= '#'+${(heat < 37)? 'ffa87e' : (heat < 120)? 'fb734a' : 'e0081c'}"
th:style="'color: ' + ${heatColor}">[[${heat}]]℃
</li>
</ul>
<div th:if="${!#lists.isEmpty(post.categories)}" class="level-item">
<a th:each="cy : ${post.categories}" th:href="${cy.status.permalink}" th:text="${cy.spec.displayName}"></a>&nbsp;
</div>
</div>
<hr/>
<div class="main-content" th:text="${post.status.excerpt}"></div>
2023-03-24 20:25:04 +08:00
</div>
</div>
2023-03-23 18:25:48 +08:00
</th:block>
2023-03-27 12:10:21 +08:00
<div th:if="${theme.config.post.top_thumbnail_mode == 'grid' || theme.config.post.thumbnail_mode == 'grid'}"
class="column-main-grid">
<th:block th:each="post : ${posts}"
th:with="thumbnail = ${#strings.isEmpty(post.spec.cover) ? #strings.isEmpty(theme.config.post.default_thumbnail) ? '' : theme.config.post.default_thumbnail + '?id=' + postStat.index : post.spec.cover}">
<div
th:if="${(theme.config.post.top_thumbnail_mode == 'grid' || (!post.spec.pinned && theme.config.post.thumbnail_mode == 'grid'))}"
class="card widget">
<a class="thumbnail" th:href="${post.status.permalink}">
<div class="thumbnail-image" th:style="'background-image: url(' + ${thumbnail} + ')'"></div>
</a>
<ul class="breadcrumb">
<li th:text="${#dates.format(post.spec.publishTime, 'yyyy-MM-dd HH:mm')}"></li>
<li><i class="fa fa-eye"></i>[[${post.stats.visit}]]</li>
<li th:if="${post.spec.allowComment}" class="is-hidden-mobile"><i class="fa fa-comments-o"></i>[[${post.stats.comment}]]
</li>
<li class="is-hidden-mobile"><i class="fa fa-thumbs-o-up"></i>[[${post.stats.upvote}]]</li>
<li
th:with="heat= ${24+post.stats.visit*0.1+post.stats.upvote*2+post.stats.comment*3}, heatColor= '#'+${(heat < 37)? 'ffa87e' : (heat < 120)? 'fb734a' : 'e0081c'}"
th:style="'color: ' + ${heatColor}">[[${heat}]]℃
</li>
</ul>
<h2 class="title">
<span class="top" th:if="${post.spec.pinned}">置顶</span>
<a
th:href="${post.status.permalink}" th:text="${post.spec.title}"></a>
</h2>
</div>
</th:block>
</div>
</th:block>