halo-theme-hao/templates/modules/loading-box.html

13 lines
423 B
HTML

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<!-- loading 页面 -->
<div id="loading-box" onclick="heo.hideLoading()"
th:fragment="loading-box"
th:if="${theme.config.other.loading_box} and not ${#strings.isEmpty(theme.config.other.loading_box_img)}">
<div class="loading-bg">
<img class="loading-img" th:src="${theme.config.other.loading_box_img}">
</div>
</div>
</html>