묻고답하기

탭형태의 최근 이미지 게시물을 코드생성하여 레이아웃 편집기에 삽입을 하였는데 화면이 하얗게 나오고 아무것도 표시되않습니다.

삽입코드는
<img class="zbxe_widget_output" widget="tab_newest_images" skin="tab_images_yym" order_target="list_order" order_type="desc" thumbnail_type="crop" display_author="Y" display_regdate="Y" display_readed_count="Y" display_voted_count="Y" mid_list="board" />
위의 코드 입니다.

레이아웃 편집기에 나와있는 내용은

<!-- js 파일 import -->
<!--%import("js/moonhouse.js")-->

<!--// 레이아웃과 연동될 css 파일 import -->
<!--@if($layout_info->colorset == "simple")-->
    <!--%import("css/simple.css")-->
<!--@else-->
    <!--%import("css/normal.css")-->
<!--@end-->

<style type="text/css">
* { margin:0; padding:0; }
</style>

<!--@if($layout_info->scrollbar == "yes")-->
<style type="text/css">
  HTML { scrollbar-face-color:{$layout_info->scrollbar_color};
  scrollbar-shadow-color:gray;
  scrollbar-highlight-color:#f0f0f0;
  scrollbar-3dlight-color:#F0F0F0;
  scrollbar-darkshadow-color:#ffffff;
  scrollbar-track-color:#F0F0F0;
  scrollbar-arrow-color:#ffffff;
</style>
<!--@end-->

<!-- 배경이미지 설정 -->
<style>
<!--@if(!$layout_info->bg_img)-->
body { background:url(./layouts/mh_simple/images/page_bg.jpg) repeat-x #3A0404; }
<!--@else-->
body { background:url({$layout_info->bg_img}) {$layout_info->layout_bgimg_align} top {$layout_info->layout_bgimg_repeat} {$layout_info->bg_color} }
<!--@end-->
</style>
<!-- /배경이미지 설정 -->

<!--@if(!$layout_info->colorset)-->
  {@$layout_info->colorset = "simple"}
<!--@end-->
 
<!-- 메인이미지 설정 -->
<div id="wrapper" style=<!--@if(!$layout_info->main_img)-->"background:url(./layouts/mh_simple/images/header.jpg) no-repeat;"<!--@else-->"background:url({$layout_info->main_img}) no-repeat;"<!--@end--> />
<!-- /메인이미지 설정 -->
    <div id="none"></div>

 <!--logo-->
 <div id="logo"><a href="{$layout_info->index_url}">
 <!--@if(!$layout_info->logo_image)-->
   {$layout_info->logo_text}<!--@else--><img src="{$layout_info->logo_image}" alt="Logo" class="iePngFix" />
 <!--@end--></a></div>

 <!--img-->
 <ul id="img">
   <!--@if(!$layout_info->img_image)--><img src="images/woman.png" class="iePngFix" /><!--@else-->
     <img src="{$layout_info->img_image}" class="iePngFix" />
      <!--@end-->
 </ul>
 
 <!-- 로그인 위젯 -->
    <!--@if($layout_info->Login == "yes")-->
   <ul id="logoin">
     <img class="zbxe_widget_output" widget="login_info" skin="nuri_simple_login_garo" colorset="col_000" />
      </ul>
 <!--@end-->
 
    <!--GNB-->
    <ul id="gnb">
      <!-- main_menu 1차 시작 -->
        {@$gnb_count = 0;}
        <!--@foreach($main_menu->list as $key => $val)--><!--@if($val['link'])-->
          <!--@if($val['selected'])-->
            {@ $menu_1st = $val }
          <!--@end-->
          <li id="gnbli{$gnb_count}" <!--@if($val['selected'])-->class="on"<!--@end--> onmouseover="gnbinToggle({$gnb_count}, this)" ><a href="{$val['href']}" onfocus="this.blur()" <!--@if($val['open_window']=='Y')-->onclick="window.open(this.href);return false;"<!--@end-->>{$val['link']}</a></li>{@$gnb_count++;}
        <!--@end--><!--@end-->
      <!-- main_menu 1차 끝 -->
    </ul>
    <!--//GNB-->

    <script type="text/javascript">
      var gnb_count = {$gnb_count};
    </script>

    <!-- 2차 메뉴 -->
      {@$gnb_count = 0;}
      <!--@foreach($main_menu->list as $mkey => $mval)-->
        <!--@if($mval['text'])-->
          <!-- 왼쪽 2차 메뉴 -->
          <!--@if($mval['selected'])-->
            <ol id="gnb{$gnb_count}" class="gnb_sub" style="display:block;">
              <!--@if(!$mval['list'])--><li></li><!--@end-->
              <!--@foreach($mval['list'] as $key => $val)--><!--@if($val['text'])-->
                <li <!--@if($val['selected'])-->class="on"<!--@end-->><a href="{$val['href']}" onfocus="this.blur();" <!--@if($val['open_window']=='Y')-->onclick="window.open(this.href);return false;"<!--@end-->>{$val['text']}</a>
    </li>
      <!--@end--><!--@end-->
            </ol>
    <script type="text/javascript">
      var gnb_count_now = {$gnb_count};
      reset_menu();
    </script>
    <!--@else-->
      <ol id="gnb{$gnb_count}" class="gnb_sub" style="display:none;">
    <!--@if(!$mval['list'])--><li></li><!--@end-->
      <!--@foreach($mval['list'] as $key => $val)--><!--@if($val['text'])-->
        <li><a href="{$val['href']}" onfocus="this.blur();" <!--@if($val['open_window']=='Y')-->onclick="window.open(this.href);return false;"<!--@end-->>{$val['text']}</a>
        </li>
    <!--@end--><!--@end-->
      </ol>
    <!--@end-->
      {@$gnb_count++;}
    <!--@end--><!--@end-->

    <div id="topcon">
   <div id="topcon-inner">
        <!-- 공지 위젯 시작-->

        <!--/ 공지 위젯 끝-->
      </div>
    </div>

    <!-- 본문 -->
    <div id="content">
   <div id="body" style=<!--@if(!$layout_info->body_color)-->"background-color:#901315;"<!--@else-->"background-color:{$layout_info->body_color};"<!--@end--> />
      {$content}
        <div class="clear"> 
   </div> 
    </div>
    <!-- // 본문 끝 -->
   
    <!-- 우측메뉴 -->

    <!--@if($layout_info->colorset == "normal")-->
   <div id="rightColumn">
  
   <!-- 우측서브메뉴 -->
   <!--@if($menu_1st['list'])-->
   <div id="lnb_top"> </div>

     <ol id="lnb">
          <li><div id="subtitle">{$menu_1st['text']}</div></li>

      {@ $idx = 1 }
     <!--@foreach($menu_1st['list'] as $key => $val)--><!--@if($val['link'])-->
       <li <!--@if($val['selected'])-->class="on"<!--@end-->><a href="{$val['href']}" <!--@if($val['open_window']=='Y')-->onclick="window.open(this.href);return false;"<!--@end-->>{$val['link']}</a>

    <!-- main_menu 3차 시작 -->
    <!--@if($val['list'] && ($val['expand']=='Y'||$val['selected']) )-->
      <ul>
        <!--@foreach($val['list'] as $k => $v)--><!--@if($v['link'])-->
       <li <!--@if($v['selected'])-->class="on"<!--@end-->><a href="{$v['href']}" <!--@if($v['open_window']=='Y')-->onclick="window.open(this.href);return false;"<!--@end-->>{$v['link']}</a></li>
     <!--@end--><!--@end-->
      </ul>
    <!--@end-->
          </li>
      {@$idx++}
   <!--@end--><!--@end-->
  </ol>
   <div id="lnb_btom"><img src="images/none.gif" /> </div>
   <!--@else--><!--@end-->
   <!-- /우측서브메뉴 -->

        <div class="title_r">Widgets</div>
          <div class="rightDiv">
            <!-- 이곳에 위젯삽입 하세요-->


        
   <!-- // 위젯삽입 끝 -->
          </div>
     </div><!--@else-->
   <!--@end-->

    <!-- // 우측메뉴 끝 -->

 <!-- 바닥 -->
 <div id="bottom">
      <ul class="b_menu">
        <!--@foreach($bottom_menu->list as $key => $val)--><!--@if($val['link'])-->
          <!--@if($val['selected'])-->
            {@ $menu_1st = $val }
          <!--@end-->

          <!--@if($val['selected'])--><!--@end--><a href="{$val['href']}" <!--@if($val['open_window']=='Y')-->onclick="window.open(this.href);return false;"<!--@end-->>{$val['link']}</a> &nbsp;|

        <!--@endif--><!--@endforeach-->
  <!--@if($logged_info)-->
    <a href="{getUrl('+ 'act','dispMemberLogout')}">Logout</a>
       | <a href="{geturl('act','dispMemberInfo')}">MyInfo</a>   
    <!--@else-->
    <a href="{getUrl('act','dispMemberLoginForm')}">Login</a>
       | <a href="{getUrl('act','+ 'dispMemberSignUpForm')}">Join</a>
  <!--@end-->

     <!--@if($logged_info->is_admin=="Y")-->

       | <a href="{getUrl('act','dispLayoutAdminEdit','layout_srl',$layout_info->layout_srl)}">Edit</a>
       | <a href="{getUrl('act','dispLayoutAdminModify','layout_srl',$layout_info->layout_srl)}">Modify</a>
       | <a href="{getUrl('','module','admin')}" " onclick="window.open(this.href); return false;">Admin</a>
    <!--@else-->
       | <a href="javascript:bookmarksite('{$layout_info->fa}', '{$layout_info->index_url}')">Bookmark</a>
  <!--@end-->
       | <a href="{getUrl('','module','+ 'layout','act','dispLayoutInfo','selected_layout','mh_simple')}" onclick="popopen(this.href,'layoutSkinInfo'); return false;"><img src="images/buttonHelp.gif" alt="Skin Info" width="13" height="13"/></a>
      </ul>

      <ul class="footer" >       
        <!--@if(!$layout_info->copyright)--><!--@else-->{$layout_info->copyright} / <!--@end--><a href="mailto:{$layout_info->mail}" class="mail">Send E-mail.</a> / <a href="http://jcas.co.kr" onclick="window.open(this.href);return false;">By MoonHouse</a> / <a href="http://www.freewebsitetemplates.com" onclick="window.open(this.href);return false;">Free Website Templates</a> / <a href="http://www.zeroboard.com/" onclick="window.open(this.href);return false;"><img src="./images/powerdByXE.gif"></a>
      </ul>
     
   <ul class="b_text">
        <!--@if(!$layout_info->b_text1)--><!--@else-->{$layout_info->b_text1}<!--@end--><br />
        <!--@if(!$layout_info->b_text2)--><!--@else-->{$layout_info->b_text2}<!--@end-->
      </ul>
    </div>
 <!-- // 바닥 끝 -->

  </div>
</div>

이렇습니다.

어디에다 삽입해야 되는지하고 왜 하얗게 나오는지 알려주시면 감사드리겠습니다. ㅠ.ㅠ

글쓴이 제목 최종 글
XE 공지 글 쓰기,삭제 운영방식 변경 공지 [16] 2019.03.05 by 남기남
밀로그 1차메뉴 클릭시 바로 관리자에게 쪽지를...  
미눙 도큐멘트 SRL 값에 대해서 답변 부탁드립니다  
silvergray630 동영상/이미지 썸네일  
밀로그 전체 회원수, 오늘가입회원수 어떻게 삽입하나요? [1] 2009.04.13 by -
loyalcs xe로 게시판만 설치가능한지... [1] 2009.04.13 by -
아방카 파일자체에서 관리자에 대한 부분 수정은 어딜 해야 하나요?  
안구건조 블로그의 분류(카테고리) 기능관련  
물레방아 xe에서 신청서폼 만드는법좀 알려주세요. [4] 2009.04.13 by 물레방아
새우꽝 음악감상 가능한가요? [2] 2009.04.13 by 새우꽝
백천 제 홈페이지 xe 계시판갤러리이용하면서 애러가 납니다.(http://bcsw108.org/xe/awd) [3] 2009.04.13 by 유팔복
woon xe_official 레이아웃에서 회원 가입메뉴 링크 오류 도와주세요 [3] 2009.04.13 by 유팔복
양규열881 최근이미지 위젯 삽입이 잘 안되욤 ㅠ.ㅠ  
NukeliaS 오픈아이디로 로그인이 안 되네요.  
나그네 사용권한이 없다고 나옵니다.  
칼캡트 레이아웃에서 플래시 삽입 시에 여백이 생기는 문제... [1] 2009.04.13 by 유팔복
리스카 제로보드4 시리즈를 쓰고있습니다만.. [1] 2009.04.13 by 넨네
woon 유팔복님 감사합니다. 한가지만 더 문의 하겠습니다.ㅠㅠ [1] 2009.04.13 by 유팔복
SeeReal 기본 로그인 창의 신비로운 현상 [3] file 2009.04.13 by -
보스매니아 게시물 이동 관련 질문....  
궁금 htm 페이지를 만들어서 정회원만 보게 할려고 합니다만.. [3] 2009.04.13 by 넨네
뽀칠이 XE 이해할수 잇는 책 한권 추천 해주세요.  
초록배추 2차 메뉴가안 보여요.  
itspal 친구보기/쪽지함 보기가 안보입니다. [1] 2009.04.13 by 궁금이2
CHOBOS 게시판에 글쓰면 [2] 2009.04.13 by CHOBOS
CHOBOS 요즘 요런 겔러리가 많이눈에띄는데요 [2] 2009.04.13 by CHOBOS
아방카 어드민세팅부분에 잘못써서 수정할려고 하는데 파일자체는 어딜 건들여야 하나요? [1] 2009.04.13 by 글을 알어?
sdlfjslkgjslkgj 도와주세요 홈페이지가 사라졌어요 ㅠㅠ [4] 2009.04.13 by sdlfjslkgjslkgj
답답이 unexpected error occured 오류 때문에 미치겠습니다.  
서동우 나모 홈페이지와 연동  
우리아기 게시판 생성이 안되네요 file