2022-08-18 06:21:44 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="ko"
|
|
|
|
|
xmlns:th="http://www.thymeleaf.org"
|
|
|
|
|
xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity5" xmlns="http://www.w3.org/1999/html">
|
2022-08-19 05:30:04 +00:00
|
|
|
<div class="mx-3 pt-3" th:fragment="leftMenuFragment">
|
|
|
|
|
<a href="/" class="d-flex">
|
|
|
|
|
<img id="logo" th:src="@{/img/logo.png}" alt="logo" title="logo">
|
|
|
|
|
<!--<span class="fs-4">해양경찰청 파일관리 시스템</span>-->
|
|
|
|
|
</a>
|
|
|
|
|
<ul class="nav nav-pills flex-column my-3" sec:authorize="isAuthenticated()">
|
2022-09-02 07:14:09 +00:00
|
|
|
<li th:each="firstMenu:${session.menuList}">
|
|
|
|
|
<th:block th:each="cat1Code:${session.commonCode.get('CAT1')}">
|
|
|
|
|
<th:block th:if="${cat1Code.itemCd eq firstMenu.cat1Cd}">
|
|
|
|
|
<a href="#" class="nav-link link-dark" th:text="${cat1Code.itemValue}"></a>
|
|
|
|
|
</th:block>
|
|
|
|
|
</th:block>
|
|
|
|
|
</li>
|
2022-08-19 05:30:04 +00:00
|
|
|
</ul>
|
2022-08-18 06:21:44 +00:00
|
|
|
</div>
|
|
|
|
|
</html>
|