22 lines
862 B
HTML
22 lines
862 B
HTML
<li class="col-md-6 col-sm-4 col-xs-3">
|
|
<div class="stui-vodlist__box">
|
|
<a style="color: rgb(233, 93, 80); background-image: url("/static/img/default.jpg");"
|
|
|
|
class="stui-vodlist__thumb lazyload" href=""
|
|
title="{$Video.v_name}"
|
|
data-src="{$Video.v_pic}">
|
|
<span class="play hidden-xs"></span>
|
|
<span class="pic-text text-right"></span>
|
|
</a>
|
|
<div class="stui-vodlist__detail">
|
|
<h4 class="title text-overflow">
|
|
<a style="color: rgb({:mt_rand(0,255)}, {:mt_rand(0,255)}, {:mt_rand(0,255)})"
|
|
href="" title="{$Video.v_name}">{$Video.v_name}</a>
|
|
</h4>
|
|
<div class="text text-overflow text-muted hidden-xs">
|
|
{$Video.v_description|raw}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</li>
|