root.jsp 703 B

12345678910111213141516171819
  1. <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  2. <%@ taglib prefix="tiles" uri="http://tiles.apache.org/tags-tiles" %>
  3. <%@ taglib prefix="s" uri="http://www.springframework.org/tags"%>
  4. <!doctype html>
  5. <html>
  6. <head>
  7. <%-- <meta property="og:type" content="website" />
  8. <meta property="og:title" content="M-Care Plus" />
  9. <meta property="og:description" content="M-Care Plus 서비스입니다." /> --%>
  10. <title><tiles:getAsString name="title" /></title>
  11. <tiles:insertAttribute name="include" />
  12. </head>
  13. <body>
  14. <div id="divPage" style="overflow: hidden">
  15. <tiles:insertAttribute name="header" />
  16. <tiles:insertAttribute name="content" />
  17. </div>
  18. </body>
  19. </html>