git-subtree-dir: datatrans git-subtree-mainline:b60fd84fb9git-subtree-split:7c9701e4e5
38 lines
1.4 KiB
Plaintext
38 lines
1.4 KiB
Plaintext
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
|
|
<%@ taglib uri="http://tiles.apache.org/tags-tiles" prefix="tiles" %>
|
|
|
|
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
|
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
|
|
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
|
|
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
|
|
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
|
|
|
|
|
|
<%
|
|
response.setHeader("Cache-Control","no-store");
|
|
response.setHeader("Pragma","no-cache");
|
|
response.setDateHeader("Expires",0);
|
|
if (request.getProtocol().equals("HTTP/1.1")) response.setHeader("Cache-Control", "no-cache");
|
|
%>
|
|
|
|
<c:set var="ctx" value="${pageContext.request.contextPath}"/>
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="ko">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>이미지 편집 시스템</title>
|
|
<!--<meta name="viewport" content="width=device-width, initial-scale=1.0">-->
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
</head>
|
|
<body>
|
|
<section class="content">
|
|
여기는 base-main.jsp
|
|
<tiles:insertAttribute name="header"/> <!-- /WEB-INF/views/common/layout/header.jsp -->
|
|
<tiles:insertAttribute name="body"/> <!-- body -->
|
|
|
|
<tiles:insertAttribute name="footer"/> <!-- /WEB-INF/views/common/layout/footer.jsp -->
|
|
</section>
|
|
</body>
|
|
</html> |