37 lines
2.1 KiB
HTML
37 lines
2.1 KiB
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="ko" xmlns:th="http://www.thymeleaf.org"
|
||
|
|
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-->
|
||
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
|
||
|
|
<!-- 컨텐츠페이지의 CSS 영역이 들어감 -->
|
||
|
|
<th:block layout:fragment="css"></th:block>
|
||
|
|
|
||
|
|
<!-- 공통으로 쓰이는 js파일을넣는다.-->
|
||
|
|
<!--bootstrap-->
|
||
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
|
||
|
|
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.10.2/dist/umd/popper.min.js" integrity="sha384-7+zCNj/IqJ95wo16oMtfsKbZ9ccEh31eOz1HGyDuCQ6wgnyJNSYdrPa03rtR1zdB" crossorigin="anonymous"></script>
|
||
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.min.js" integrity="sha384-QJHtvGhmr9XOIpI6YVutG+2QOK9T+ZnN4kzFN1RtK3zEFEIsxhlmWl5/YESvpZ13" crossorigin="anonymous"></script>
|
||
|
|
<!-- 컨텐츠페이지의 스크립트 영역이 들어감 -->
|
||
|
|
<th:block layout:fragment="script"></th:block>
|
||
|
|
</head>
|
||
|
|
|
||
|
|
<header th:replace="fragments/header :: headerFragment"></header>
|
||
|
|
<div sec:authorize="isAnonymous()">
|
||
|
|
<div layout:fragment="content"></div>
|
||
|
|
</div>
|
||
|
|
<div sec:authorize="isAuthenticated()" class="row">
|
||
|
|
<div class="col-3">
|
||
|
|
<div th:replace="fragments/leftMenu :: leftMenuFragment"></div>
|
||
|
|
</div>
|
||
|
|
<div class="col-9">
|
||
|
|
<div layout:fragment="content"></div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<footer th:replace="fragments/footer :: footerFragment"></footer>
|
||
|
|
</html>
|