j m 440ed26527 新增自定义侧边栏模块
移除原有公告内容输入框,改为侧边栏组中输入内容
2024-04-28 21:06:18 +08:00

11 lines
631 B
HTML

<aside xmlns:th="https://www.thymeleaf.org"
th:fragment="widget (position)"
th:class="'column column-side column-' + ${position} + ' ' + ${position == 'left'?theme.config.basic_style.left_sidebar_sticky:theme.config.basic_style.right_sidebar_sticky} + '-sticky'">
<th:block th:each="sidebar :${theme.config.sidebar.sidebar_show}">
<th:block th:if="${sidebar.position == position}">
<th:block th:replace="~{${'/widget/' + sidebar.type} :: widget ( sidebar = ${sidebar})}" />
</th:block>
</th:block>
<div th:if="${position == 'left'}" class="column-right-shadow is-hidden-desktop">
</div>
</aside>