itsm_ysm/src/main/webapp/WEB-INF/tiles/tiles-layout-popup.jsp
2021-07-29 09:16:58 +09:00

33 lines
1.1 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 http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href="<c:url value='/css/nlib.css' />" rel="stylesheet" type="text/css">
<title>온라인 자료대출관리 (N-LIB)</title>
<script type="text/javascript">
//제목 설정
$( document ).ready(function() {
document.title = "[NLIB] " + $("#content-wrap-popup").find("title").text();
});
</script>
</head>
<body>
<div id="page-container">
<div id="header-popup"><tiles:insertAttribute name="header" /></div>
<div id="menu-popup"><tiles:insertAttribute name="menu" /></div>
<div id="content-wrap-popup"><tiles:insertAttribute name="main" /></div>
<div id="footer-popup"><tiles:insertAttribute name="footer" /></div>
</div>
</body>
</html>