popup.html 499 B

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html lang="ko"
  3. xmlns:th="http://www.thymeleaf.org"
  4. xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout">
  5. <head th:replace="~{common/fragments/header :: header}"></head>
  6. <body>
  7. <th:block th:replace="~{common/fragments/variables :: variables}"></th:block>
  8. <div id="wrapper" class="color-pastel">
  9. <th:block layout:fragment="content"></th:block>
  10. </div>
  11. <script th:inline="javascript">
  12. /*<![CDATA[*/
  13. $(document).ready(function() {
  14. });
  15. /*]]>*/
  16. </script>
  17. </body>
  18. </html>