20 lines
801 B
HTML
20 lines
801 B
HTML
<!DOCTYPE html>
|
|
<html lang="ko"
|
|
xmlns:th="http://www.thymeleaf.org"
|
|
xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity5">
|
|
<footer th:fragment="footerFragment" class="d-flex flex-wrap py-2 mt-auto border-top bg-dark">
|
|
<div class="row">
|
|
<div class="col-auto">
|
|
<img th:src="@{/img/f_logo.png}" alt="logo" title="logo" style="height: 50px;"/>
|
|
</div>
|
|
<div class="col-auto row">
|
|
<div class="col-12">
|
|
<span class="text-muted">21995 인천광역시 연수구 해돋이로 130 해양경찰청</span>
|
|
</div>
|
|
<div class="col-12">
|
|
<span class="text-muted">COPYRIGHT(C)2021 MINISTRY OF REPUBLIC ADMINISTRATION AND SECURITY. ALL RIGHT RESERVED</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
</html> |