Files
2025-12-31 00:49:32 +08:00

15 lines
589 B
HTML

<section class="{$TpStyle.dom_prefix}-r1-wrap">
<h3 class="{$TpStyle.dom_prefix}-r1-title">排行榜</h3>
<ol class="{$TpStyle.dom_prefix}-r1-list">
{volist name="arrVideoPiaofang" id="vo" offset="0" length="10"}
<li class="{$TpStyle.dom_prefix}-r1-row">
<a href="/detail/{$vo.v_id}.html" class="{$TpStyle.dom_prefix}-r1-a">
{// <span class="{$TpStyle.dom_prefix}-r1-num">{$i}</span> }
<span class="{$TpStyle.dom_prefix}-r1-name">{$vo.v_name}</span>
</a>
</li>
{/volist}
</ol>
</section>