64 lines
3.2 KiB
HTML
64 lines
3.2 KiB
HTML
<!doctype html>
|
|
<html xmlns:th="http://www.thymeleaf.org" xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout">
|
|
|
|
<head th:fragment="headFragment">
|
|
<title th:text="#{title.html}">개발자 포털</title>
|
|
|
|
<meta content="https://www.eactive.co.kr/" property="og:url"/>
|
|
<meta charset="UTF-8"/>
|
|
<meta content="max-age=0, public" http-equiv="Cache-Control"/>
|
|
<meta content="index, follow" name="robots"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no">
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
|
|
<meta http-equiv="Cache-Control" content="no-cache">
|
|
<meta http-equiv="Pragma" content="no-cache">
|
|
|
|
<meta http-equiv="Expires" content="0">
|
|
<link rel="stylesheet" type="text/css" th:href="@{/css/style2.css}">
|
|
<link rel="stylesheet" type="text/css" th:href="@{/css/common2.css}">
|
|
<link rel="stylesheet" type="text/css" th:href="@{/css/slick.css}">
|
|
<link rel="stylesheet" type="text/css" th:href="@{/css/daterangepicker.css}">
|
|
|
|
<link rel="stylesheet" th:href="@{/plugins/codemirror/codemirror.css}" type="text/css"/>
|
|
<link rel="stylesheet" th:href="@{/plugins/codemirror/theme/monokai.css}" type="text/css"/>
|
|
<link rel="stylesheet" th:href="@{/plugins/summernote/summernote-lite.css}" type="text/css" />
|
|
<link rel="stylesheet" th:href="@{/plugins/jquery-ui/jquery-ui.min.css}" />
|
|
|
|
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
|
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
|
<!--[if lt IE 9]>
|
|
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
|
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
|
<![endif]-->
|
|
|
|
<script th:src="@{/plugins/jquery/jquery-3.7.1.min.js}"></script>
|
|
<script th:src="@{/js/lodash.js}"></script>
|
|
|
|
<!-- Portal 설정값 전역 노출 -->
|
|
<script th:inline="javascript">
|
|
window.PORTAL_CONFIG = {
|
|
file: {
|
|
maxSize: /*[[${@portalProperties.file.maxSize}]]*/ '8MB',
|
|
maxSizeBytes: /*[[${@portalProperties.file.maxSizeBytes}]]*/ 8388608,
|
|
allowedExtensions: /*[[${@portalProperties.file.allowedExtensions}]]*/ 'pdf,doc,docx,xls,xlsx,ppt,pptx,hwp,gif,jpg,jpeg,png'
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<script th:src="@{/js/common.js}"></script>
|
|
<script th:src="@{/js/moment.min.js}"></script>
|
|
<script th:src="@{/js/daterangepicker.js}"></script>
|
|
<script th:src="@{/plugins/codemirror/codemirror.js}"></script>
|
|
<script th:src="@{/plugins/codemirror/mode/clike.js}"></script>
|
|
<script th:src="@{/plugins/codemirror/mode/javascript.js}"></script>
|
|
<script th:src="@{/plugins/codemirror/addon/display/fullscreen.js}"></script>
|
|
<script th:src="@{/plugins/codemirror/addon/display/placeholder.js}"></script>
|
|
<script th:src="@{/plugins/summernote/summernote-lite.min.js}"></script>
|
|
<script th:src="@{/plugins/summernote/summernote-cleaner.js}"></script>
|
|
<script th:src="@{/plugins/jquery-ui/jquery-ui.min.js}"></script>
|
|
<script th:src="@{/js/htmx.min.js}"></script>
|
|
</head>
|
|
|
|
</html>
|