41 lines
1.6 KiB
HTML
41 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html xmlns:th="https://www.thymeleaf.org" lang="zh-CN">
|
|
|
|
<th:block th:replace="~{modules/import}" />
|
|
|
|
<body>
|
|
<th:block th:replace="~{modules/header::goPage('home')}" />
|
|
<main>
|
|
<div class="main-content">
|
|
|
|
<article class="post active" data-page="post">
|
|
<header>
|
|
<th:block th:replace="~{modules/post_article_banner}" />
|
|
<h2 class="h2 article-title" th:text="${post.spec.title}"></h2>
|
|
<p class="article-meta">
|
|
作者:<span th:text="${post.spec.owner}">admin</span> |
|
|
发布日期:<span th:text="${#dates.format(post.spec.publishTime, 'yyyy-MM-dd')}">2025-03-22</span>
|
|
</p>
|
|
</header>
|
|
<section class="blog-posts">
|
|
<div th:utext="${post.content.content}" class="post-content"> </div>
|
|
</section>
|
|
<!-- Comment -->
|
|
<div class="post-comment">
|
|
<h2 class="h3 article-comment">评论</h2>
|
|
<halo:comment group="content.halo.run" kind="Post" th:attr="name=${post.metadata.name}" />
|
|
</div>
|
|
</article>
|
|
</div>
|
|
</main>
|
|
<!-- ======= Footer ======= -->
|
|
<th:block th:replace="~{modules/footer}" />
|
|
<!-- End Footer -->
|
|
<script th:src="@{/assets/js/script.js?v={version}(version=${theme.spec.version})}"></script>
|
|
<script type="module"
|
|
src="https://lf6-cdn-tos.bytecdntp.com/cdn/expire-1-M/ionicons/5.5.2/ionicons/ionicons.esm.js"></script>
|
|
<script nomodule
|
|
src="https://lf6-cdn-tos.bytecdntp.com/cdn/expire-1-M/ionicons/5.5.2/ioniconshttps://lf3-cdn-tos.bytecdntp.com/cdn/expire-1-M/ionicons/5.5.2/ionicons/ionicons.js"></script>
|
|
</body>
|
|
|
|
</html> |