|
|
<?php if(!empty($list)):?>
|
|
|
<?php foreach($list as $news):
|
|
|
$title = Util_StringHelper::substr_cn($news['title'], 90);
|
|
|
$description = Lib_Utils_StringHelper::substr_full_en(Lib_Utils_StringHelper::stripTags($news['content']), 120);
|
|
|
$height = $width = 0;
|
|
|
$thumb_size = json_decode($news['thumb_size'], true);
|
...
|
...
|
@@ -52,7 +51,7 @@ $width = 342; |
|
|
<h2 <?php echo $news['main_title_type'] == 1 ? 'class="volupia"':'';?> style="white-space:nowrap;text-overflow:ellipsis;overflow: hidden;">
|
|
|
<a href="<?php echo url('news/detail' ,array('id' => $news['id']))?>" target="_blank">
|
|
|
<?php
|
|
|
echo $video ? Lib_Utils_StringHelper::substr_full_en($news['title'], 88) : $title;
|
|
|
echo Lib_Utils_StringHelper::substr_full_en(Lib_Utils_StringHelper::stripTags($news['title']), 120);
|
|
|
?>
|
|
|
</a>
|
|
|
</h2>
|
...
|
...
|
|