1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| {php} $order = array('log_ViewNums'=>'DESC'); $where = array(array('=','log_Status','0')); $array = $zbp->GetArticleList(array('*'),$where,$order,array(9),''); {/php} {foreach $array as $key => $hotlist} <article class="guide-inner top-num{$key+1}"> <div class="guide-inner-info"> <h4 class="g-i-top"> <span class="g-i-cate"><a href="{$hotlist.Category.Url}" target="_blank">{$hotlist.Category.Name}</a></span> <span class="g-i-time"><i class="icon font-time"></i>{$hotlist.Time('Y-m-d')}</span> </h4> <h5> <a href="{$hotlist.Url}" target="_self">{$hotlist.Title}</a> </h5> <p> {$hotlist.Intro}</p> </div> </article> {/foreach}
|