error_page.html 566 B

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