7 lines
283 B
HTML
7 lines
283 B
HTML
|
<!-- 关于小组件 -->
|
||
|
<th:block th:fragment="about-widgets(widgets)"
|
||
|
th:if="${not #lists.isEmpty(widgets)}">
|
||
|
<th:block th:each="widget : ${widgets}">
|
||
|
<th:block th:replace="~{'modules/widgets/about-widgets/'+ ${widget.widgetId}}"/>
|
||
|
</th:block>
|
||
|
</th:block>
|