11 lines
510 B
HTML
Raw Normal View History

2023-03-22 14:19:49 +08:00
<aside xmlns:th="https://www.thymeleaf.org"
th:fragment="widget (position)"
class="column column-side column-${position} ${settings[position+'_sidebar_sticky']!'none'}-sticky">
2023-03-22 14:57:52 +08:00
<th:block th:each="sidebar :${theme.config.sidebar.sidebar_show}">
<th:block th:if="${sidebar.position == position}">
2023-03-22 15:36:57 +08:00
<th:block th:replace="~{${'/widget/' + sidebar.type}}" />
2023-03-22 14:57:52 +08:00
</th:block>
</th:block>
<div th:if="${position == 'left'}" class="column-right-shadow is-hidden-desktop">
</div>
2023-03-22 14:19:49 +08:00
</aside>