12345678910111213 |
- <!DOCTYPE html>
- <html lang="en" xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org">
- <head th:replace="common/common_head::head(title='错误提示')">
- <!--<title>hhaaaaaaaa</title>-->
- </head>
- <body>
- <div class="p-t-100" style="text-align: center;">
- <img th:src="@{/images/icons/sad.png}">
- <span class="font-weight-bold" style="font-size: 30px;" th:text="${message==null}?'对不起,出错了!!!':${message}"></span>
- </div>
- <div th:replace="common/common_foot::foot"></div>
- </body>
- </html>
|