Files
spring-jwt/owner-frontend-service/src/main/resources/templates/layouts/layout.html
bum12ark b3e502db57 feat(owner-frontend-service): 점주 서비스 - 지난 주문 페이지 구현
- pagination plugin 사용
- 날짜 검색 유효성 검사 로직 추가
2022-02-11 16:52:49 +09:00

71 lines
1.9 KiB
HTML

<!DOCTYPE html>
<html lang="ko"
xmlns:th="http://www.thymeleaf.org"
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
>
<head>
<meta charset="utf-8" />
<title>Just Pick-up : 점주용</title>
<!-- Custom fonts for this template-->
<link href="vendor/fontawesome-free/css/all.min.css" rel="stylesheet" type="text/css">
<link
href="https://fonts.googleapis.com/css?family=Nunito:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i"
rel="stylesheet">
<!-- Custom styles for this template-->
<link href="css/sb-admin-2.min.css" rel="stylesheet">
</head>
<body id="page-top">
<div id="wrapper">
<!-- Side bar -->
<div th:replace="fragments/left :: left-fragment"></div>
<div id="content-wrapper" class="d-flex flex-column">
<div id="content">
<!-- nav bar -->
<nav th:replace="fragments/navbar :: navbar-fragment"></nav>
<div class="container-fluid">
<div layout:fragment="content"></div>
</div>
</div>
<footer th:replace="fragments/footer :: footer-fragment"></footer>
</div>
</div>
<!-- Bootstrap core JavaScript-->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="https://code.jquery.com/ui/1.13.0/jquery-ui.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<!-- Core plugin JavaScript-->
<script src="vendor/jquery-easing/jquery.easing.min.js"></script>
<!-- Custom scripts for all pages-->
<script src="js/sb-admin-2.min.js"></script>
<!-- Page level plugins -->
<script src="vendor/chart.js/Chart.min.js"></script>
<!-- Pagination plugins -->
<script src="vendor/twbs-pagination/jquery.pwbsPagination.min.js"></script>
<script src="common.js"></script>
<script>
$(function() {
init();
setEvent();
});
</script>
</body>
</html>