Change:优化相关设置和配置

This commit is contained in:
jiewenhuang 2023-08-13 00:12:03 +08:00
parent 1b1f7610d0
commit 3f47058277
3 changed files with 8 additions and 8 deletions

View File

@ -21,7 +21,7 @@
<th:block th:replace="~{modules/macro/banner :: banner}" />
</th:block>
<th:block th:if="${theme.config.home.enable_hot_category}">
<th:block th:if="${theme.config.home.enable_hot_category} and (${not #lists.isEmpty(theme.config.home.category_data)} or ${not #lists.isEmpty(theme.config.home.category_data)})">
<th:block th:replace="~{modules/macro/hot_category :: hot_category}" />
</th:block>

View File

@ -17,19 +17,19 @@
<th:block th:if="${#lists.isEmpty(menuItem.children)}"
th:with="menuItems = ${menu.menuItems}">
<th:block th:each="menuItem : ${menuItems}">
<th:block th:replace="modules/macro/menu-item :: menu-item(${menuItem})" />
<th:block th:replace="~{modules/macro/menu-item :: menu-item(${menuItem})}" />
</th:block>
</th:block>
<th:block th:if="${not #lists.isEmpty(menuItem.children)}">
<div class="joe_dropdown" trigger="hover" placement="60px">
<div class="joe_dropdown__link">
<th:block th:replace="modules/macro/menu-item :: menu-item(${menuItem})" />
<th:block th:replace="~{modules/macro/menu-item :: menu-item(${menuItem})}" />
<i class="joe-font joe-icon-arrow-down joe_dropdown__link-icon" style="color:var(--main)"></i>
</div>
<nav class="joe_dropdown__menu" style="top: 60px;">
<th:block th:each="childMenu : ${menuItem.children}">
<li>
<th:block th:replace="modules/macro/menu-item :: menu-item(${childMenu})" />
<th:block th:replace="~{modules/macro/menu-item :: menu-item(${childMenu})}" />
</li>
</th:block>
</nav>
@ -44,17 +44,17 @@
<th:block th:with="menuItems = ${menu.menuItems}">
<th:block th:each="menuItem : ${menuItems}">
<th:block th:if="${#lists.isEmpty(menuItem.children)}">
<th:block th:replace="modules/macro/menu-item :: menu-item(${menuItem})" />
<th:block th:replace="~{modules/macro/menu-item :: menu-item(${menuItem})}" />
</th:block>
<th:block th:if="${not #lists.isEmpty(menuItem.children)}">
<div class="joe_dropdown" trigger="hover" placement="60px">
<div class="joe_dropdown__link">
<th:block th:replace="modules/macro/menu-item :: menu-item(${menuItem})" />
<th:block th:replace="~{modules/macro/menu-item :: menu-item(${menuItem})}" />
<i class="joe-font joe-icon-arrow-down joe_dropdown__link-icon" style="color:var(--main)"></i>
</div>
<nav class="joe_dropdown__menu" style="top: 60px;">
<li th:each="childMenu : ${menuItem.children}">
<th:block th:replace="modules/macro/menu-item :: menu-item(${childMenu})" />
<th:block th:replace="~{modules/macro/menu-item :: menu-item(${childMenu})}" />
</li>
</nav>
</div>

View File

@ -100,7 +100,7 @@
<th:block th:replace="~{modules/common/footer :: footer}" />
</div>
<th:block th:replace="~{modules/macro/tail :: tail}" />
[[${singlePage.metadata.name}]]
</body>
</th:block>