31 lines
1.5 KiB
HTML
31 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html xmlns:th="https://www.thymeleaf.org"
|
|
th:replace="~{modules/layouts/layout :: layout(_head = null,_content = ~{::content},_title = ${post.spec.title + ' - ' + site.title})}">
|
|
|
|
<th:block th:fragment="content">
|
|
|
|
<div class="page_main uk-width-2-3@m">
|
|
<th:block th:replace="~{modules/header}"/>
|
|
<div id="pjax-container">
|
|
<main id="primary" class="site-main">
|
|
<div class="single_wrap" uk-height-viewport="offset-top: true">
|
|
<div th:id="|post-${post.metadata.name} post-single|"
|
|
th:class="|post-single post-${post.metadata.name} post type-post status-publish format-standard has-post-thumbnail hentry category-pixtheme|">
|
|
|
|
<th:block th:replace="~{macro/tpl/content-single :: content-single}"></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=${post.metadata.name},kind='Post',group='content.halo.run')}"></th:block>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main><!-- #main -->
|
|
|
|
</div>
|
|
<th:block th:replace="~{modules/footer-main}"/>
|
|
</div>
|
|
</th:block>
|
|
|
|
</html> |