Merge remote-tracking branch 'origin/main'
This commit is contained in:
commit
c832e82c9d
|
@ -1,5 +1,5 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" th:replace="~{modules/layouts/layout :: layout(content = ~{::content}, htmlType = '404')}"
|
||||
<html lang="en" th:replace="~{modules/layouts/layout :: layout(content = ~{::content}, htmlType = '404', title = '404')}"
|
||||
xmlns:th="http://www.thymeleaf.org">
|
||||
|
||||
<th:block th:fragment="content">
|
||||
|
@ -10,7 +10,7 @@
|
|||
<!-- 头部导航栏 -->
|
||||
<div>
|
||||
<header class="not-top-img" id="page-header">
|
||||
<nav th:replace="~{modules/nav :: nav(title = null)}"></nav>
|
||||
<nav th:replace="~{modules/nav :: nav(title = '404')}"></nav>
|
||||
</header>
|
||||
</div>
|
||||
<div id="error-wrap">
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" th:replace="~{modules/layouts/layout :: layout(content = ~{::content}, htmlType = '500')}"
|
||||
<html lang="en" th:replace="~{modules/layouts/layout :: layout(content = ~{::content}, htmlType = '500', title = '500')}"
|
||||
xmlns:th="http://www.thymeleaf.org">
|
||||
|
||||
<th:block th:fragment="content">
|
||||
|
@ -10,7 +10,7 @@
|
|||
<!-- 头部导航栏 -->
|
||||
<div>
|
||||
<header class="not-top-img" id="page-header">
|
||||
<nav th:replace="~{modules/nav :: nav(title = null)}"></nav>
|
||||
<nav th:replace="~{modules/nav :: nav(title = '500')}"></nav>
|
||||
</header>
|
||||
</div>
|
||||
<div id="error-wrap">
|
||||
|
|
Loading…
Reference in New Issue