67 lines
2.5 KiB
Plaintext
67 lines
2.5 KiB
Plaintext
<%@ page language="java" contentType="text/html; charset=UTF-8" %>
|
|
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
|
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
|
|
<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui" %>
|
|
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
|
|
<%@ taglib prefix="tiles" uri="http://tiles.apache.org/tags-tiles"%>
|
|
<!DOCTYPE html>
|
|
<html lang="ko">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="format-detection" content="telephone=no" />
|
|
|
|
<link rel="shortcut icon" type="image/x-icon" href="#">
|
|
<link href="${pageContext.request.contextPath}/css/common.css" rel="stylesheet">
|
|
<link href="${pageContext.request.contextPath}/css/jquery.mCustomScrollbar.css" rel="stylesheet">
|
|
<link href="${pageContext.request.contextPath}/css/swiper.min.css" rel="stylesheet">
|
|
<link href="${pageContext.request.contextPath}/css/default.css" rel="stylesheet">
|
|
|
|
<script src="${pageContext.request.contextPath}/js/jquery-1.11.2.min.js"></script>
|
|
<script src="${pageContext.request.contextPath}/js/jquery.mCustomScrollbar.js"></script>
|
|
<script src="${pageContext.request.contextPath}/js/swiper.min.js"></script>
|
|
<script src="${pageContext.request.contextPath}/js/default.js"></script>
|
|
|
|
<script src="${pageContext.request.contextPath}/js/nlib.js"></script>
|
|
<script src="${pageContext.request.contextPath}/js/cart.js"></script>
|
|
|
|
<title>소장자료관</title>
|
|
|
|
<script type="text/javascript">
|
|
|
|
// 제목 설정
|
|
function fn_setPageTitle(title) {
|
|
document.title = "소장자료관 - " + title;
|
|
}
|
|
|
|
</script>
|
|
|
|
</head>
|
|
<body>
|
|
|
|
<div class="wrap sub">
|
|
<!-- 헤더 -->
|
|
<header id="header">
|
|
<tiles:insertAttribute name="header" />
|
|
</header>
|
|
|
|
<!-- 메뉴 -->
|
|
<div class="nav-wrap">
|
|
<tiles:insertAttribute name="menu" />
|
|
</div>
|
|
|
|
<!-- 메인컨텐츠 -->
|
|
<tiles:insertAttribute name="main" />
|
|
|
|
<footer id="footer">
|
|
<tiles:insertAttribute name="footer" />
|
|
</footer>
|
|
</div>
|
|
|
|
<!-- Layer Popup -->
|
|
<div id="NLIB_LAYER_POPUP" style="z-index:100; display:none; margin-left:20px !important; position:fixed; top:100px;left:20%; width:500px; height:auto; min-height:200px; max-height:500px; border:3px solid black !important; overflow:scroll; background-color:#eeeeaa; "></div>
|
|
|
|
</body>
|
|
</html> |