1.2.5原版

This commit is contained in:
anian
2026-03-10 17:17:32 +08:00
commit af82232813
163 changed files with 35269 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
<th:block th:if="${not #lists.isEmpty(widgets)}" th:fragment="aside(widgets)"
th:each="widget_data,iterStat : ${widgets}">
<th:block th:unless="${widget_data.widget=='custom_html'}">
<th:block th:replace="~{'modules/widgets/aside/'+ ${widget_data.widget}}" />
</th:block>
<th:block th:if="${widget_data.widget=='custom_html'}">
<th:block th:replace="~{modules/widgets/aside/custom_html :: custom_html(${widget_data})}" />
</th:block>
</th:block>