File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
<%@ page language="java" contentType="text/html; charset=UTF-8" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="decorator" uri="http://www.opensymphony.com/sitemesh/decorator" %>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
<!DOCTYPE html>
<html lang="ko">
<script type="text/javascript" src="/js/jquery.min.itn.js"></script>
<script type="text/javascript" src="/js/calendar.js"></script>
<!-- message -->
<c:if test="${!empty message}">
<script lang="javascript">
alert("${message}");
</script>
</c:if>
<c:import url="/${siteId}/web/siteCheck.do" /><!-- 사이트체크 getScript-->
<c:import url="/${siteId}/common/getMetaTag.do" /><!-- 메타테그 -->
<c:import url="/${siteId}/common/getScript.do" /><!-- 메타테그 -->
<decorator:head />
<c:import url="/${siteId}/web/com/webCommonHeader.do" /><!-- 해더 매뉴 -->
<c:set var="currentUrl" value="${pageContext.request.requestURL}" />
<c:if test="${!fn:contains(currentUrl, '/web/main/mainPage.do')}"> <!-- 메인페이지 좌측매뉴 없음 -->
<section class="sub">
<c:import url="/${siteId}/web/com/naviWrap.do" />
<div id="wrapper">
<div id="left_menu"><c:import url="/${siteId}/web/com/leftMenu.do" /></div>
<decorator:body />
</div>
</section>
</c:if>
<c:if test="${fn:contains(currentUrl, '/web/main/mainPage.do')}">
<decorator:body />
</c:if>
<c:import url="/${siteId}/web/com/webCommonFooter.do" />
</html>