포럼
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
include된 파일에서는 loop 명령자가 동작하지 않는지요?
2012.04.21 18:47
foreach는 적용이 되는데요.
loop는 그냥 태그에 노출됩니다.
제가 사용법을 모르고 사용한건가요?
아님 버그 인가요?
댓글 3
-
퍼니엑스이
2012.04.21 18:51
-
엑스셀코드
2012.04.21 19:13
\layout.html 에서<div class="container"><include target="main.html" cond="in_array($mid,array('','index','xxx'))" /><include target="sub.html" cond="!in_array($mid,array('','index','xxx'))" /></div>이렇게 하구요.main.html 에서<div class="row"><div class="span4 columns"><div class="sidebox event"><include target="xxx.html" /></div><div class="span8 columns"><div id="bootstrap_content">{$content}</div></div></div>xxx.html에서{@$items = array('a','b','c');}<ul><li loop="$items => $key, $val">...</li></ul>loop가 안되서 지금 foreach로 하니 되요.<ul><!--@foreach($items as $key => $val)--><li>...</li><!--@end--></ul> -
퍼니엑스이
2012.04.21 19:54
똑같은 버그를 저도 겪어본 것 같네요.
확실하게 확인한게 아니라 다시 한번 재현해봐야겠네요...
HTML 태그를 어떻게 사용하신건가요?
글만 봐서는 알 수가 없네요ㅠ.ㅠ