21 lines
787 B
HTML
21 lines
787 B
HTML
<article class="{$TpStyle.dom_prefix}-t3-area">
|
|
<header class="{$TpStyle.dom_prefix}-t3-hd">
|
|
<strong>热门热映</strong>
|
|
</header>
|
|
|
|
<div class="{$TpStyle.dom_prefix}-t3-list">
|
|
{volist name="arrVideoPiaofang" id="vo" offset="0" length="6"}
|
|
<a href="/detail/{$vo.v_id}.html" class="{$TpStyle.dom_prefix}-t3-item">
|
|
<img loading="lazy"
|
|
src="{site:cfg code='PUBLIC_COVER_DOMAIN' encode='false'/}{$vo.v_pic}"
|
|
class="{$TpStyle.dom_prefix}-t3-pic"
|
|
alt="{$vo.v_name}">
|
|
<div class="{$TpStyle.dom_prefix}-t3-r">
|
|
<h4>{$vo.v_name}</h4>
|
|
<p>影片热度上涨,立即前往观看</p>
|
|
</div>
|
|
</a>
|
|
{/volist}
|
|
</div>
|
|
</article>
|