gpttemp
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
|
||||
<section class="{$TpStyle.dom_prefix}-recA-wrap">
|
||||
<header class="{$TpStyle.dom_prefix}-recA-head">
|
||||
<h2 class="{$TpStyle.dom_prefix}-recA-title">编辑精选</h2>
|
||||
<span class="{$TpStyle.dom_prefix}-recA-sub">今天值得一看的好片</span>
|
||||
</header>
|
||||
|
||||
<ul class="{$TpStyle.dom_prefix}-recA-grid">
|
||||
{volist name="arrVideoRecommend" id="vo" offset="0" length="8"}
|
||||
<li class="{$TpStyle.dom_prefix}-recA-item">
|
||||
<a href="/detail/{$vo.v_id}.html" class="{$TpStyle.dom_prefix}-recA-link">
|
||||
<div class="{$TpStyle.dom_prefix}-recA-coverBox">
|
||||
<img
|
||||
loading="lazy"
|
||||
src="{site:cfg code='PUBLIC_COVER_DOMAIN' encode='false'/}{$vo.v_pic}"
|
||||
alt="{$vo.v_name}"
|
||||
class="{$TpStyle.dom_prefix}-recA-cover"
|
||||
>
|
||||
{if !empty($vo.v_remarks)}
|
||||
<span class="{$TpStyle.dom_prefix}-recA-tag">{$vo.v_remarks}</span>
|
||||
{/if}
|
||||
</div>
|
||||
<p class="{$TpStyle.dom_prefix}-recA-name">{$vo.v_name}</p>
|
||||
</a>
|
||||
</li>
|
||||
{/volist}
|
||||
</ul>
|
||||
</section>
|
||||
Reference in New Issue
Block a user