From 7354992b66566c43177bdc35d24ca21182624a68 Mon Sep 17 00:00:00 2001 From: KNKIM Date: Thu, 28 Oct 2021 13:53:00 +0900 Subject: [PATCH] =?UTF-8?q?=EC=84=9C=EB=B8=94=EB=A6=BF=20JSP=ED=8E=98?= =?UTF-8?q?=EC=9D=B4=EC=A7=80=EB=82=B4=20including=20=EC=B2=98=EB=A6=AC?= =?UTF-8?q?=EB=A5=BC=20=EC=9C=84=ED=95=9C=20=ED=85=9C=ED=94=8C=EB=A6=BF=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/webapp/HTML안내.txt | 35 ++++++++ .../WEB-INF/jsp/nlib/cmm/headerSubPart.jsp | 82 +++++++++++++++++++ .../WEB-INF/tiles/inc-sub/footer-popup.jsp | 5 ++ .../WEB-INF/tiles/inc-sub/header-popup.jsp | 6 ++ .../webapp/WEB-INF/tiles/tiles-layout-sub.jsp | 9 ++ 5 files changed, 137 insertions(+) create mode 100644 src/main/webapp/HTML안내.txt create mode 100644 src/main/webapp/WEB-INF/jsp/nlib/cmm/headerSubPart.jsp create mode 100644 src/main/webapp/WEB-INF/tiles/inc-sub/footer-popup.jsp create mode 100644 src/main/webapp/WEB-INF/tiles/inc-sub/header-popup.jsp create mode 100644 src/main/webapp/WEB-INF/tiles/tiles-layout-sub.jsp diff --git a/src/main/webapp/HTML안내.txt b/src/main/webapp/HTML안내.txt new file mode 100644 index 00000000..b8859bab --- /dev/null +++ b/src/main/webapp/HTML안내.txt @@ -0,0 +1,35 @@ +2021-10-25 오전 08:07 21,638 cart-complete.html 대출/열람 신청 완료 +2021-10-25 오전 08:07 21,952 cart-confirm.html 대출/열람 신청 확인 +2021-10-25 오전 08:07 31,574 cart.html 카트 + +2021-10-25 오전 08:07 36,245 connect.html 계정연결 +2021-10-25 오전 08:07 38,172 data-detail.html 소장자료 상세조회 +2021-10-25 오전 08:07 43,189 data-noresults.html 소장자료관 +2021-10-25 오전 08:07 48,943 data.html 소장자료관 + +2021-10-25 오전 08:07 36,249 dormant.html 휴면상태안내 및 해제 + +2021-10-25 오전 08:07 15,686 faq.html FAQ +2021-10-25 오전 08:07 10,011 greeting.html 인사말 +2021-10-25 오전 08:07 16,513 guide.html 이용안내 +2021-10-25 오전 08:07 73,917 index.html 메인홈 +2021-10-25 오전 08:07 17,193 Interested-data.html 관심자료 +2021-10-25 오전 08:07 42,470 join-1.html 회원가입 - 약관동의 +2021-10-25 오전 08:07 45,823 join-2.html 회원가입 - 정보입력 +2021-10-25 오전 08:07 36,457 join-3.html 회원가입 - 가입완료안내 +2021-10-25 오전 08:07 36,834 join.html 회원가입 - SNS 선택 +2021-10-25 오전 08:07 14,639 loan.html 대출관리 +2021-10-25 오전 08:07 39,715 location.html 찾아오시는길 +2021-10-25 오전 08:07 18,561 myinfo-modify.html 회원정보수정 +2021-10-25 오전 08:07 8,550 myinfo-passwd.html 회원비번 변경 +2021-10-25 오전 08:07 42,958 myinfo.html +2021-10-25 오전 08:07 10,915 notice-view.html +2021-10-25 오전 08:07 13,878 notice.html +2021-10-25 오전 08:07 10,378 Notifications.html 알림 +2021-10-25 오전 08:07 12,252 qna-view.html +2021-10-25 오전 08:07 12,118 qna-write.html +2021-10-25 오전 08:07 14,978 qna.html +2021-10-25 오전 08:07 36,587 secession.html 회원탈퇴 +2021-10-25 오전 08:07 15,568 visit.html 방문열람관리 + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/nlib/cmm/headerSubPart.jsp b/src/main/webapp/WEB-INF/jsp/nlib/cmm/headerSubPart.jsp new file mode 100644 index 00000000..a74a4f83 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/nlib/cmm/headerSubPart.jsp @@ -0,0 +1,82 @@ +<%@ 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="sec" uri="http://www.springframework.org/security/tags"%> + +<% +String councilCd = (String)session.getAttribute("councilCd"); +String councilNm = (String)session.getAttribute("councilNm"); +%> + + + + +

헤더영역

+
+ +

소장자료관

+ +
+

검색

+
+
+ 검색 +
+ + + + +
+
+ +
+
+
+
+ + +
+ + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/tiles/inc-sub/footer-popup.jsp b/src/main/webapp/WEB-INF/tiles/inc-sub/footer-popup.jsp new file mode 100644 index 00000000..31da9460 --- /dev/null +++ b/src/main/webapp/WEB-INF/tiles/inc-sub/footer-popup.jsp @@ -0,0 +1,5 @@ +<%@ 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"%> diff --git a/src/main/webapp/WEB-INF/tiles/inc-sub/header-popup.jsp b/src/main/webapp/WEB-INF/tiles/inc-sub/header-popup.jsp new file mode 100644 index 00000000..dabfac7f --- /dev/null +++ b/src/main/webapp/WEB-INF/tiles/inc-sub/header-popup.jsp @@ -0,0 +1,6 @@ +<%@ 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="sec" uri="http://www.springframework.org/security/tags"%> diff --git a/src/main/webapp/WEB-INF/tiles/tiles-layout-sub.jsp b/src/main/webapp/WEB-INF/tiles/tiles-layout-sub.jsp new file mode 100644 index 00000000..47c434e1 --- /dev/null +++ b/src/main/webapp/WEB-INF/tiles/tiles-layout-sub.jsp @@ -0,0 +1,9 @@ +<%@ 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"%> + + +