29 lines
874 B
HTML
29 lines
874 B
HTML
<!DOCTYPE html>
|
|
<html xmlns="http://www.w3.org/1999/xhtml"
|
|
xmlns:th="http://www.thymeleaf.org"
|
|
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout">
|
|
<head>
|
|
<th:block th:replace="/mobile/include/head :: layout_head"></th:block>
|
|
<th:block layout:fragment="layout_menu_css"></th:block>
|
|
</head>
|
|
|
|
<body id="body2">
|
|
<th:block layout:fragment="layout_top_script"></th:block>
|
|
|
|
<div class="project_wrap">
|
|
<th:block th:replace="/mobile/common/header4 :: layout_header_type1"></th:block>
|
|
<main>
|
|
<th:block layout:fragment="layout_content"></th:block>
|
|
</main>
|
|
<th:block layout:fragment="layout_photoswipe"></th:block>
|
|
</div>
|
|
|
|
|
|
<th:block layout:fragment="layout_right_modal"></th:block>
|
|
|
|
<th:block layout:fragment="layout_popup"></th:block>
|
|
|
|
<th:block layout:fragment="layout_script"></th:block>
|
|
</body>
|
|
</html>
|