묻고답하기
xe 디폴트 레이아웃 사용중인데요 - 빵조각 표시는 어떻게하죠
2014.07.27 18:05
안녕하세요
디폴트 레이아웃을 사용준인데요
bread cum (빵조각이라고 하던데요)
빵조각을 보이게 하려면 어떻게 불러와야 할까요?
아래 내용이 현재의 layout.html 의 소스입니다.
------------------------------------------- 아 래-------------------------------------------------------
<load target="default.layout.css" />
<load target="default.layout.webfont.css" cond="$layout_info->WEB_FONT == 'YES'" />
<load target="../../common/js/respond.min.js" targetie="lt IE 9" />
<load target="default.layout.js" type="body" />
<div class="container">
<p class="skip"><a href="#content">{$lang->skip_to_content}</a></p>
<header class="header">
<h1>
<a href="{geturl('')}" id="siteTitle">
<img src="siteTitle.png" alt="XpressEngine" cond="!Context::getSiteTitle() && !$layout_info->LOGO_IMG && !$layout_info->LOGO_TEXT">
<block cond="Context::getSiteTitle() && !$layout_info->LOGO_IMG && !$layout_info->LOGO_TEXT">{Context::getSiteTitle()}</block>
<img src="{$layout_info->LOGO_IMG}" alt="{$layout_info->LOGO_TEXT}" cond="$layout_info->LOGO_IMG">
<block cond="!$layout_info->LOGO_IMG && $layout_info->LOGO_TEXT">{$layout_info->LOGO_TEXT}</block>
</a>
</h1>
<div class="side">
<!-- ACCOUNT -->
<img widget="login_info" skin="default" />
<!-- /ACCOUNT -->
<!-- SEARCH -->
<form action="{getUrl()}" method="get" class="search">
<input type="hidden" name="vid" value="{$vid}" />
<input type="hidden" name="mid" value="{$mid}" />
<input type="hidden" name="act" value="IS" />
</form>
<!-- /SEARCH -->
</div>
<!-- GNB -->
<nav class="gnb" id="gnb">
<ul>
<li loop="$GNB->list=>$key1,$val1" class="active"|cond="$val1['selected']">
<a href="{$val1['href']}" target="_blank"|cond="$val1['open_window']=='Y'">{$val1['link']}</a>
<ul cond="$val1['list']">
<li loop="$val1['list']=>$key2,$val2" class="active"|cond="$val2['selected']"><a href="{$val2['href']}" target="_blank"|cond="$val2['open_window']=='Y'">{$val2['link']}</a></li>
</ul>
</li>
</ul>
</nav>
<!-- /GNB -->
</header>
<!-- VISUAL | DEFAULT -->
<div class="visual main"|cond="$layout_info->LAYOUT_TYPE=='MAIN_PAGE'" class="visual sub"|cond="$layout_info->LAYOUT_TYPE=='SUB_PAGE'" cond="!$layout_info->VISUAL_IMAGE_1 && !$layout_info->VISUAL_IMAGE_2 && !$layout_info->VISUAL_IMAGE_3 && $layout_info->VISUAL_USE=='YES'">
<div class="list">
<a href="{geturl('','module','admin','act','dispAdminConfigGeneral')}" class="item i1" cond="$layout_info->LAYOUT_TYPE=='MAIN_PAGE'">
<img src="visual.main.1.jpg" alt="" />
<p>Click, to change<br> the site title.</p>
</a>
<a href="{geturl('','module','admin','act','dispMenuAdminSiteMap')}" class="item i2" cond="$layout_info->LAYOUT_TYPE=='MAIN_PAGE'">
<img src="visual.main.2.jpg" alt="" />
<p>Click, to change<br> the site navigation.</p>
</a>
<a href="{geturl('','module','admin','act','dispLayoutAdminInstanceList','layout','default')}" class="item i3" cond="$layout_info->LAYOUT_TYPE=='MAIN_PAGE'">
<img src="visual.main.3.jpg" alt="" />
<p>Click, to change<br> the site visual image.</p>
</a>
<a href="{geturl('','module','admin','act','dispLayoutAdminInstanceList','layout','default')}" class="item i1" cond="$layout_info->LAYOUT_TYPE=='SUB_PAGE'">
<img src="visual.sub.jpg" alt="" />
<p>Click, to change the site visual image.</p>
</a>
</div>
<button type="button" class="prev" title="Prev"><i></i></button>
<button type="button" class="next" title="Next"><i></i></button>
</div>
<!-- VISUAL | USER DEFINE -->
<div class="visual main"|cond="$layout_info->LAYOUT_TYPE=='MAIN_PAGE'" class="visual sub"|cond="$layout_info->LAYOUT_TYPE=='SUB_PAGE'" cond="($layout_info->VISUAL_IMAGE_1 || $layout_info->VISUAL_IMAGE_2 || $layout_info->VISUAL_IMAGE_3) && $layout_info->VISUAL_USE=='YES'">
<div class="list">
<a href="{$layout_info->VISUAL_LINK_1}" class="item i1" cond="$layout_info->VISUAL_IMAGE_1">
<img src="{$layout_info->VISUAL_IMAGE_1}" alt="" />
<p>{$layout_info->VISUAL_TEXT_1}</p>
</a>
<a href="{$layout_info->VISUAL_LINK_2}" class="item i2" cond="$layout_info->VISUAL_IMAGE_2">
<img src="{$layout_info->VISUAL_IMAGE_2}" alt="" />
<p>{$layout_info->VISUAL_TEXT_2}</p>
</a>
<a href="{$layout_info->VISUAL_LINK_3}" class="item i3" cond="$layout_info->VISUAL_IMAGE_3">
<img src="{$layout_info->VISUAL_IMAGE_3}" alt="" />
<p>{$layout_info->VISUAL_TEXT_3}</p>
</a>
</div>
<button type="button" class="prev" title="Prev"><i></i></button>
<button type="button" class="next" title="Next"><i></i></button>
</div>
<!-- /VISUAL -->
<div class="body main"|cond="$layout_info->LAYOUT_TYPE=='MAIN_PAGE'" class="body sub"|cond="$layout_info->LAYOUT_TYPE=='SUB_PAGE'">
<!-- LNB -->
<nav class="lnb" cond="$layout_info->LAYOUT_TYPE == 'SUB_PAGE'">
<h1 loop="$GNB->list=>$key1,$val1" cond="$val1['selected']"><a href="{$val1['href']}" target="_blank"|cond="$val1['open_window']=='Y'">{$val1['link']}</a></h1>
<ul loop="$GNB->list=>$key1,$val1" cond="$val1['selected'] && $val1['list']">
<li loop="$val1['list']=>$key2,$val2" class="active"|cond="$val2['selected']"><a href="{$val2['href']}" target="_blank"|cond="$val2['open_window']=='Y'">{$val2['link']}</a>
<ul cond="$val2['list']">
<li loop="$val2['list']=>$key3,$val3" class="active"|cond="$val3['selected']"><a href="{$val3['href']}" target="_blank"|cond="$val3['open_window']=='Y'">{$val3['link']}</a></li>
</ul>
</li>
</ul>
</nav>
<!-- /LNB -->
<!-- CONTENT -->
<div class="content" id="content">
{$content}
</div>
<!-- /CONTENT -->
</div>
</div>
<footer class="footer">
<p cond="!$layout_info->FOOTER">Powered by <a href="
댓글 2
-
조인잡
2014.07.27 19:48
<div class="content" id="content"><div class="col-lg-12"><!-- 현위치 표시(Location)--><ol class="breadcrumb"><li class="locationBlank"><span><a href="{$layout_info->brand_url}" title="{$lang->homepage}"><img src="images/btnHome.gif" border="0" alt="{$lang->homepage}" /></a></span></li><!--@foreach($main_menu->list as $key => $val)--><!--@if($val['link'])--><!--@if($val['selected'])--><li class="active"><span> <a href="{$val['href']}">{$val['text']}</a></span></li>{@ $menu_1st = $val }<!--@end--><!--@end--><!--@endforeach--><!--@if($menu_1st)-->{@ $idx = 1 }<!--@foreach($menu_1st['list'] as $key => $val)--><!--@if($val['link'])--><!--@if($val['selected'])--><li class="active"><span> <a href="{$val['href']}">{$val['text']}</a></span></li>{@$idx++}<!--@if($val['list'] && ($val['expand']=='Y'||$val['selected']) )--><!--@foreach($val['list'] as $key2 => $val2)--><!--@if($val2['link'])--><!--@if($val2['selected'])--><li class="active"><span> <a href="{$val2['href']}">{$val2['text']}</a></span></li><!--@if($val2['list'] && ($val2['expand']=='Y'||$val2['selected']) )--><!--@foreach($val2['list'] as $key3 => $val3)--><!--@if($val3['link'])--><!--@if($val3['selected'])--><li class="active"><span> <a href="{$val3['href']}">{$val3['text']}</a></span></li><!--@if($val3['list'] && ($val3['expand']=='Y'||$val3['selected']) )--><!--@foreach($val3['list'] as $key4 => $val4)--><!--@if($val4['link'])--><!--@if($val4['selected'])--><li class="active"><span> <a href="{$val4['href']}">{$val4['text']}</a></span></li><!--@end--><!--@end--><!--@endforeach--><!--@end--><!--@end--><!--@end--><!--@endforeach--><!--@end--><!--@end--><!--@end--><!--@endforeach--><!--@end--><!--@end--><!--@end--><!--@endforeach--><!--@end--></ol><!-- /현위치 표시(Location)--></div>{$content}</div> -
쫑효다컴
2014.07.27 20:55
답변감사합니다.
그런데 {$content} 위에 소스를 넣어 봤는데
아래처럼 되는데요
음,,, 다른 부분에 손을 보아야 하는 걸까요?