53 lines
2.4 KiB
Plaintext
53 lines
2.4 KiB
Plaintext
|
|
<!doctype html>
|
||
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ko" lang="ko">
|
||
|
|
<head>
|
||
|
|
@Html.Partial("./Partial/Head")
|
||
|
|
@RenderSection("stylespre", required: false)
|
||
|
|
@Html.Partial("./Partial/CSS")
|
||
|
|
@RenderSection("styles", required: false)
|
||
|
|
@Html.Partial("./Partial/JS")
|
||
|
|
@RenderSection("scriptsHeader", required: false)
|
||
|
|
</head>
|
||
|
|
<body id="mainbody">
|
||
|
|
<div id="wrap">
|
||
|
|
@Html.Partial("./Partial/GNB")
|
||
|
|
@RenderSection("main", required: false)
|
||
|
|
@if (!(ViewBag.IsMain ?? false))
|
||
|
|
{
|
||
|
|
@Html.Partial("./Partial/SubTitle")
|
||
|
|
@Html.Partial("./Partial/Breadcrumb")
|
||
|
|
}
|
||
|
|
<div class="container">
|
||
|
|
<div id="pageTitle" style="@((ViewBag.IsMain??false)?"display: none;":"")">
|
||
|
|
<h3>@ViewBag.Title</h3>
|
||
|
|
</div>
|
||
|
|
@RenderBody()
|
||
|
|
</div>
|
||
|
|
<div class="mainpopwrap popWrap" id="privacy">
|
||
|
|
<div>
|
||
|
|
<div class="popTitle">
|
||
|
|
<h5 id="mainpoptitle">이용약관</h5>
|
||
|
|
<span class="popClose" onclick="$('#mainpopcont').html(''); $('.mainpopwrap').hide();">닫기</span>
|
||
|
|
</div>
|
||
|
|
<div class="popCont" id="mainpopcont"></div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
@Html.Partial("./Partial/Foot")
|
||
|
|
</div>
|
||
|
|
@RenderSection("scripts", required: false)
|
||
|
|
<form id="menuform" action="" method="get">
|
||
|
|
<input type="hidden" name="menupageno" id="menupageno" value="0" />
|
||
|
|
<input type="hidden" name="menupagedatakey" id="menupagedatakey" value="0" />
|
||
|
|
<input type="hidden" name="menupagedatakey2" id="menupagedatakey2" value="0" />
|
||
|
|
</form>
|
||
|
|
<div id="bglayer" style="display:none;"></div>
|
||
|
|
<div id="layermessage"><div></div><a href="#" class="mainokbutton" onclick="javascript:hidelayermsg();">확인</a></div>
|
||
|
|
<div id="bgprogress">...</div>
|
||
|
|
<div id="confirmbox"><div id="confirmboxmsg">dddd</div><div class="confirmbtnbox"><a href="#" class="btn btn1 confirmokbutton" onclick="confirmok();">예</a><a href="#" class="btn btn0 confirmokbutton" onclick="confirmtoggle();">아니오</a></div></div>
|
||
|
|
<script>
|
||
|
|
var _ismain = 1;
|
||
|
|
$("li.topsubmenu@(ViewBag.MenuPage.m1)").addClass("current");
|
||
|
|
$("li.topmenu@(ViewBag.MenuPage.m0)").addClass("current");
|
||
|
|
</script>
|
||
|
|
</body>
|
||
|
|
</html>
|