31 lines
1.3 KiB
HTML
31 lines
1.3 KiB
HTML
|
|
<section class="{$TpStyle.dom_prefix}-recE-wrap">
|
|
<header class="{$TpStyle.dom_prefix}-recE-head">
|
|
<h2 class="{$TpStyle.dom_prefix}-recE-title">轻松随便看点什么</h2>
|
|
</header>
|
|
|
|
<ol class="{$TpStyle.dom_prefix}-recE-list">
|
|
{volist name="arrVideoRecommend" id="vo" key="k" offset="0" length="8"}
|
|
<li class="{$TpStyle.dom_prefix}-recE-row">
|
|
<a href="/detail/{$vo.v_id}.html" class="{$TpStyle.dom_prefix}-recE-rowLink">
|
|
<span class="{$TpStyle.dom_prefix}-recE-index">{:sprintf('%02d',$k)}</span>
|
|
<span class="{$TpStyle.dom_prefix}-recE-text">
|
|
<span class="{$TpStyle.dom_prefix}-recE-name">{$vo.v_name}</span>
|
|
{if !empty($vo.v_remarks)}
|
|
<span class="{$TpStyle.dom_prefix}-recE-tag">{$vo.v_remarks}</span>
|
|
{/if}
|
|
</span>
|
|
<span class="{$TpStyle.dom_prefix}-recE-thumbBox">
|
|
<img
|
|
loading="lazy"
|
|
src="{site:cfg code='PUBLIC_COVER_DOMAIN' encode='false'/}{$vo.v_pic}"
|
|
alt="{$vo.v_name}"
|
|
class="{$TpStyle.dom_prefix}-recE-thumb"
|
|
>
|
|
</span>
|
|
</a>
|
|
</li>
|
|
{/volist}
|
|
</ol>
|
|
</section>
|