2021-11-24 09:27:36 +00:00
|
|
|
<!DOCTYPE html>
|
2021-11-29 09:38:48 +00:00
|
|
|
<html lang="ko" class="h-100"
|
|
|
|
|
xmlns:th="http://www.thymeleaf.org"
|
2021-11-25 06:00:10 +00:00
|
|
|
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
|
|
|
|
|
xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity5">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
|
<title>해양경찰청 파일관리 시스템</title>
|
|
|
|
|
<!-- 공통으로 쓰이는 css파일을넣는다.-->
|
|
|
|
|
<!--bootstrap-->
|
2021-11-30 10:05:43 +00:00
|
|
|
<!--<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css">
|
|
|
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.7.1/font/bootstrap-icons.css">-->
|
|
|
|
|
<link rel="stylesheet" th:href="@{/vendor/bootstrap-5.1.3-dist/css/bootstrap.min.css}">
|
|
|
|
|
<link rel="stylesheet" th:href="@{/img/bootstrap-icons-1.7.1/bootstrap-icons.scss}">
|
2021-11-25 06:00:10 +00:00
|
|
|
<!-- 컨텐츠페이지의 CSS 영역이 들어감 -->
|
|
|
|
|
<th:block layout:fragment="css"></th:block>
|
2021-11-24 09:27:36 +00:00
|
|
|
|
2021-11-25 06:00:10 +00:00
|
|
|
<!-- 공통으로 쓰이는 js파일을넣는다.-->
|
|
|
|
|
<!--bootstrap-->
|
2021-11-30 10:05:43 +00:00
|
|
|
<!--<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>-->
|
|
|
|
|
<script type="text/javascript" th:src="@{/vendor/bootstrap-5.1.3-dist/js/bootstrap.bundle.min.js}"></script>
|
|
|
|
|
<!--jquery-->
|
|
|
|
|
<script type="text/javascript" th:src="@{/vendor/jquery-3.6.0/jquery-3.6.0.min.js}"></script>
|
2021-11-25 06:00:10 +00:00
|
|
|
<!-- 컨텐츠페이지의 스크립트 영역이 들어감 -->
|
|
|
|
|
<th:block layout:fragment="script"></th:block>
|
|
|
|
|
</head>
|
2021-11-29 09:38:48 +00:00
|
|
|
<body class="d-flex flex-column h-100">
|
|
|
|
|
<header th:replace="fragments/header :: headerFragment"></header>
|
|
|
|
|
<div sec:authorize="isAnonymous()" layout:fragment="content"></div>
|
|
|
|
|
<div sec:authorize="isAuthenticated()" class="row mx-0">
|
|
|
|
|
<div class="col-2">
|
|
|
|
|
<div th:replace="fragments/leftMenu :: leftMenuFragment"></div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-10">
|
|
|
|
|
<div layout:fragment="content"></div>
|
|
|
|
|
</div>
|
2021-11-24 09:27:36 +00:00
|
|
|
</div>
|
2021-11-29 09:38:48 +00:00
|
|
|
<footer th:replace="fragments/footer :: footerFragment"></footer>
|
|
|
|
|
</body>
|
2021-11-24 09:27:36 +00:00
|
|
|
</html>
|