-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4859adb
commit 92d9766
Showing
1 changed file
with
54 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,65 @@ | ||
<!DOCTYPE html> | ||
<html lang="en" xmlns="http://www.w3.org/1999/xhtml" | ||
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout" | ||
layout:decorate="~{common/layout/my-books-layout}"> | ||
|
||
<div layout:fragment="content"> | ||
|
||
<!-- Preloader --> | ||
<div class="preloader"> | ||
<div class="preloader-inner"> | ||
<div class="preloader-icon"> | ||
<span></span> | ||
<span></span> | ||
</div> | ||
<html class="no-js" lang="zxx"> | ||
|
||
<head> | ||
<meta charset="utf-8"/> | ||
<meta http-equiv="x-ua-compatible" content="ie=edge"/> | ||
<title>404 Error - ShopGrids Bootstrap 5 eCommerce HTML Template.</title> | ||
<meta name="description" content=""/> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"/> | ||
<link rel="shortcut icon" type="image/x-icon" href="assets/images/favicon.svg"/> | ||
|
||
<!-- ========================= CSS here ========================= --> | ||
<link rel="stylesheet" href="/assets/css/bootstrap.min.css"/> | ||
<link rel="stylesheet" href="/assets/css/LineIcons.3.0.css"/> | ||
<link rel="stylesheet" href="/assets/css/main.css"/> | ||
|
||
</head> | ||
|
||
<body> | ||
<!-- Preloader --> | ||
<div class="preloader"> | ||
<div class="preloader-inner"> | ||
<div class="preloader-icon"> | ||
<span></span> | ||
<span></span> | ||
</div> | ||
</div> | ||
<!-- /End Preloader --> | ||
|
||
<!-- Start Error Area --> | ||
<div class="error-area"> | ||
<div class="d-table"> | ||
<div class="d-table-cell"> | ||
<div class="container"> | ||
<div class="error-content"> | ||
<h1>Error</h1> | ||
<h2>예기치 못한 에러가 발생했습니다</h2> | ||
<p>사용에 불편을 드려 죄송합니다</p> | ||
<p th:text="${errorMessage}"></p> | ||
<div class="button"> | ||
<a href="/" class="btn">홈 페이지로</a> | ||
</div> | ||
</div> | ||
<!-- /End Preloader --> | ||
|
||
<!-- Start Error Area --> | ||
<div class="error-area"> | ||
<div class="d-table"> | ||
<div class="d-table-cell"> | ||
<div class="container"> | ||
<div class="error-content"> | ||
<h1>Error</h1> | ||
<h2>예기치 못한 에러가 발생했습니다</h2> | ||
<p>사용에 불편을 드려 죄송합니다</p> | ||
<p th:text="${errorMessage}"></p> | ||
<div class="button"> | ||
<a href="/" class="btn">홈 페이지로</a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
<!-- End Error Area --> | ||
|
||
<!-- ========================= JS here ========================= --> | ||
<script src="assets/js/bootstrap.min.js"></script> | ||
<script> | ||
window.onload = function () { | ||
window.setTimeout(fadeout, 500); | ||
} | ||
|
||
function fadeout() { | ||
document.querySelector('.preloader').style.opacity = '0'; | ||
document.querySelector('.preloader').style.display = 'none'; | ||
} | ||
</script> | ||
</body> | ||
|
||
</html> | ||
</html> |