58 lines
2.7 KiB
Plaintext
58 lines
2.7 KiB
Plaintext
@{
|
|
var menus = (List<NP.Model.MenuPage>)ViewBag.Menus;
|
|
var em = new NP.Model.MenuPage();
|
|
var mainintroduce = menus.Where(w => w.refcode == "main.introduce").FirstOrDefault() ?? em;
|
|
var mainlocation = (menus.Where(w => w.refcode == "main.location").FirstOrDefault() ?? em);
|
|
var mainprivate = (menus.Where(w => w.refcode == "main.private").FirstOrDefault() ?? em);
|
|
var mainagree = (menus.Where(w => w.refcode == "main.agree").FirstOrDefault() ?? em);
|
|
}
|
|
<div id="footer" class="@(Request.Url.AbsolutePath == "/" ? "main" : "") ">
|
|
<div class="container">
|
|
<div class="ftMenu">
|
|
<ul>
|
|
@*<li><a href="#" onclick="gomenu(@(mainintroduce.pno), @(mainintroduce.pagetype), '@(mainintroduce.pageurl??"")', this);">교육원 소개</a></li>
|
|
<li><a href="#" onclick="gomenu(@(mainlocation.pno), @(mainlocation.pagetype), '@(mainlocation.pageurl??"")', this);">찾아오시는 길</a></li>*@
|
|
<li><a href="#" onclick="gomenu(@(mainintroduce.pno),@(mainintroduce.pagetype), '', this);">교육원소개</a></li>
|
|
<li><a href="#" onclick="viewlayer(@(mainprivate.pno), this, '개인정보처리방침');" style="color:#2c5ac7;">개인정보처리방침</a></li>
|
|
<li><a href="#" onclick="viewlayer(@(mainagree.pno), this, '이용약관');">이용약관</a></li>
|
|
</ul>
|
|
</div>
|
|
<div class="ftAddr">
|
|
<dl>
|
|
<dt>본원</dt>
|
|
<dd>경상북도 영천시 고경면 호국로 791 <span>(도암리 147번지) (우:38900)</span> <span>TEL : 1544-7660</span> <span>FAX : 054-336-8384</span></dd>
|
|
</dl>
|
|
<dl>
|
|
<dt>분원</dt>
|
|
<dd>부산광역시 서구 충무대로 277 <span>에코팰리스 2차 3층 (우:49253)</span> <span>TEL : 1544-7660</span> <span>FAX : 051-558-0662</span></dd>
|
|
</dl>
|
|
<dl>
|
|
<dt></dt>
|
|
<dd>사업자등록번호 : 621-82-04003</dd>
|
|
</dl>
|
|
</div>
|
|
<p class="ftCopy">Copyright© Young Nam Institue of <span>Technology Education All Right Reserved</span></p>
|
|
</div>
|
|
</div>
|
|
<div id="moBotBtn">
|
|
<a href="javascript:history.back();" id="mbbBack">뒤로</a>
|
|
<span id="mbbTop">맨위로</span>
|
|
</div>
|
|
<script>
|
|
$(function () {
|
|
$(window).scroll(function () {
|
|
if ($(this).scrollTop() > 500) {
|
|
$('#mbbTop').fadeIn();
|
|
} else {
|
|
$('#mbbTop').fadeOut();
|
|
}
|
|
});
|
|
|
|
$("#mbbTop").click(function () {
|
|
$('html, body').animate({
|
|
scrollTop: 0
|
|
}, 400);
|
|
return false;
|
|
});
|
|
});
|
|
</script> |