18 lines
473 B
HTML
18 lines
473 B
HTML
<!DOCTYPE html>
|
|
<html lang="en" xmlns:th="http://www.thymeleaf.org">
|
|
|
|
<!-- 关于小组件 -->
|
|
<th:block th:fragment="about-widgets(widgets)"
|
|
th:if="${ not #strings.isEmpty(widgets)}">
|
|
|
|
<th:block>
|
|
<th:block th:each="widget : ${#strings.listSplit(widgets, ',')}">
|
|
<th:block >
|
|
<th:block th:replace="~{'modules/widgets/about-widgets/'+ ${widget}}"/>
|
|
</th:block>
|
|
</th:block>
|
|
</th:block>
|
|
|
|
|
|
</th:block>
|
|
</html> |