24 lines
986 B
HTML
24 lines
986 B
HTML
<article th:id="${'post-'+singlePage.metadata.name}" th:fragment="content-page">
|
|
<header class="entry-header">
|
|
<div class="left">
|
|
<i class="ri-focus-2-line"></i>
|
|
<h1 class="entry-title" th:text="${singlePage.spec.title}"></h1>
|
|
</div>
|
|
<div class="right">
|
|
<time itemprop="datePublished"
|
|
th:datetime="${#dates.format(singlePage.spec.publishTime, 'yyyy-MM-dd HH:mm')}">
|
|
[[${#dates.format(singlePage.spec.publishTime, 'yyyy年MM月dd日')}]]
|
|
</time>
|
|
</div>
|
|
</header>
|
|
|
|
<div class="entry-content single-content">
|
|
<th:block th:utext="${singlePage.content.content}"></th:block>
|
|
</div>
|
|
|
|
<div id="comments" th:if="${(not theme.config.com.com_close) && haloCommentEnabled}" class="comments comments-area" data="normal">
|
|
<div class="halo-comment" >
|
|
<th:block th:replace="~{modules/widgets/halo-comment :: halo-comment(name=${singlePage.metadata.name},kind='SinglePage',group='content.halo.run')}"></th:block>
|
|
</div>
|
|
</div>
|
|
</article> |