Files
SEONexus/code/app/home/view/videoGpt1/module/newest/newest_01.html
2025-12-31 00:49:32 +08:00

16 lines
607 B
HTML

<section class="{$TpStyle.dom_prefix}-n1-box">
<h3 class="{$TpStyle.dom_prefix}-n1-title">最新更新</h3>
<div class="{$TpStyle.dom_prefix}-n1-grid">
{volist name="arrVideoNewest" id="vo" offset="0" length="8"}
<a href="/detail/{$vo.v_id}.html" class="{$TpStyle.dom_prefix}-n1-card">
<img loading="lazy"
src="{site:cfg code='PUBLIC_COVER_DOMAIN' encode='false'/}{$vo.v_pic}"
class="{$TpStyle.dom_prefix}-n1-img"
alt="{$vo.v_name}">
<p>{$vo.v_name}</p>
</a>
{/volist}
</div>
</section>