Files
thinksaas_lmve/plugins/home/photo/photo.html
T
2023-06-22 13:33:25 +08:00

32 lines
978 B
HTML

<div class="card">
<div class="card-header">推荐相册
<small class="float-right"><a class="text-black-50" href="{tsUrl('photo')}">更多</a></small>
</div>
<div class="card-body">
{if $arrAlbum}
<div class="photoalbumlist">
<div class="row">
{loop $arrAlbum $key $item}
<div class="col-6 col-md-2">
<a href="{tsUrl('photo','album',array('id'=>$item[albumid]))}" class="thumbnail">
<img class="rounded mw100" src="{if $item[albumface] == ''}{SITE_URL}app/photo/skins/default/photo_album.png{else}{php echo tsXimg($item[albumface],'photo',320,'320',$item[path],1)}{/if}" alt="{$item['albumname']}">
</a>
<div class="mt-1 title-cut"><a href="{tsUrl('photo','album',array('id'=>$item[albumid]))}">{$item['albumname']}</a></div>
<div class="fs12 text-black-50">{$item['count_photo']} 张图片</div>
</div>
{/loop}
</div>
</div>
{else}
<div class="c9">暂无推荐相册</div>
{/if}
</div>
</div>