mirror of
https://github.com/halo-dev/theme-earth.git
synced 2025-10-13 22:11:12 +00:00
11 lines
425 B
HTML
11 lines
425 B
HTML
<aside th:fragment="sidebar (prepend)" class="z-0 hidden h-full w-72 flex-none flex-col gap-6 md:flex">
|
|
<th:block th:with="widgets = ${theme.config.sidebar.widgets} ">
|
|
<th:block th:if="${prepend != null}">
|
|
<th:block th:replace="${prepend}" />
|
|
</th:block>
|
|
<th:block th:each="widget : ${widgets}">
|
|
<th:block th:replace="~{'modules/widgets/'+${widget.value}}" />
|
|
</th:block>
|
|
</th:block>
|
|
</aside>
|