2023-03-22 10:08:39 +08:00
|
|
|
<html lang="zh" xmlns:th="https://www.thymeleaf.org"
|
|
|
|
th:fragment="layout (title, canonical, content)">
|
|
|
|
<th:block th:if="${#strings.equals('',param._pjax) == false}">
|
|
|
|
<th:block th:replace="~{common/head :: head}"/>
|
|
|
|
<body>
|
|
|
|
<div class="column-main">
|
2023-03-22 11:57:40 +08:00
|
|
|
<th:block th:replace="${content}"/>
|
2023-03-22 10:08:39 +08:00
|
|
|
</div>
|
2023-03-22 11:57:40 +08:00
|
|
|
<th:block th:replace="~{common/scripts}"/>
|
2023-03-22 10:08:39 +08:00
|
|
|
</body>
|
|
|
|
</th:block>
|
|
|
|
<th:block th:if="${#strings.equals('',param._pjax)}">
|
|
|
|
<th:block th:replace="~{common/head :: head}"/>
|
|
|
|
<body>
|
2023-03-22 11:57:40 +08:00
|
|
|
<th:block th:replace="~{common/navbar}"/>
|
2023-03-22 10:08:39 +08:00
|
|
|
<th:block th:if="${theme.config.basic_style.enable_banner}">
|
|
|
|
<th:block th:replace="~{common/banner :: banner}"/>
|
|
|
|
</th:block>
|
2023-03-22 11:57:40 +08:00
|
|
|
<section class="section">
|
|
|
|
<div class="container<#if settings.sidebar_column?? && settings.sidebar_column!='all'> two-column</#if>">
|
|
|
|
<div class="columns">
|
|
|
|
<div class="column column-main">
|
|
|
|
<th:block th:insert="${content}"/>
|
|
|
|
</div>
|
|
|
|
<th:block th:insert="${content}"/>
|
|
|
|
<th:block th:if="${theme.config.basic_style.sidebar_column!='only-right' && theme.config.basic_style.sidebar_column!='module-left'}">
|
|
|
|
<th:block th:replace="~{common/widget :: widget('left')}"/>
|
|
|
|
</th:block>
|
|
|
|
<th:block th:if="${theme.config.basic_style.sidebar_column!='only-left' && theme.config.basic_style.sidebar_column!='module-right'}">
|
|
|
|
<th:block th:replace="~{common/widget :: widget('right')}"/>
|
|
|
|
</th:block>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
2023-03-22 11:00:43 +08:00
|
|
|
<th:block th:replace="~{common/actions}"/>
|
2023-03-22 11:57:40 +08:00
|
|
|
<th:block th:replace="~{common/footer}"/>
|
|
|
|
<th:block th:replace="~{common/scripts}"/>
|
2023-03-22 10:08:39 +08:00
|
|
|
</body>
|
|
|
|
</th:block>
|
|
|
|
</html>
|