31 lines
1.1 KiB
HTML
31 lines
1.1 KiB
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"
|
||
|
|
layout:decorate="~{/mobile/layout/detailLayout2}">
|
||
|
|
<th:block layout:fragment="layout_css">
|
||
|
|
<link rel="stylesheet" href="/css/mobile/home_event.css">
|
||
|
|
</th:block>
|
||
|
|
<th:block layout:fragment="layout_top_script">
|
||
|
|
<script>
|
||
|
|
let muAppEventId = "[[${param.muAppEventId}]]";
|
||
|
|
let referMenu = "[[${param.referMenu}]]";
|
||
|
|
let referTap = "[[${param.referTap}]]";
|
||
|
|
</script>
|
||
|
|
</th:block>
|
||
|
|
<th:block layout:fragment="layout_content">
|
||
|
|
<div class="banner_box">
|
||
|
|
<div class="img_box"></div>
|
||
|
|
<div class="text_box">
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<div class="content_box">
|
||
|
|
<p class="title"></p>
|
||
|
|
<div><!--이미지--></div>
|
||
|
|
</div>
|
||
|
|
<form id="eventForm" onsubmit="return false;"></form>
|
||
|
|
</th:block>
|
||
|
|
<th:block layout:fragment="layout_script">
|
||
|
|
<script src="/js/mobile/event/selectEvent.js"></script>
|
||
|
|
</th:block>
|
||
|
|
</html>
|