Files
halo-theme-pix/templates/error/404.html
T
2026-07-20 01:13:14 +08:00

32 lines
876 B
HTML

<!DOCTYPE html>
<html xmlns:th="https://www.thymeleaf.org"
th:replace="~{modules/layouts/layout :: layout(_head = null,_content = ~{::content},_title=null)}">
<th:block th:fragment="content">
<div class="page_main uk-width-2-3@m">
<th:block th:replace="~{modules/header}"/>
<div id="pjax-container">
<main id="primary" class="site-main">
<div class="nodata_main" uk-height-viewport="offset-top: true" >
<section class="error-404 not-found">
<div class="page-content no_resault">
<img src="/themes/theme-pix/assets/img/not-found.webp">
</div>
</section>
</div>
</main>
</div>
<th:block th:replace="~{modules/footer-main}"/>
</div>
</th:block>
</html>