...
|
...
|
@@ -21,7 +21,7 @@ else |
|
|
?>
|
|
|
<div class="layout-item tiled">
|
|
|
<div class="image-box">
|
|
|
<a href="<?php echo url('news/detail' ,array('id' => $news['id']))?>" title="<?php echo $news['title'];?>">
|
|
|
<a href="<?php echo url('news/detail' ,array('id' => $news['id']))?>" title="<?php echo $news['title'];?>" target="_blank">
|
|
|
<img src="<?php echo $thumb;?>" alt="" style="">
|
|
|
<?php if(trim($news['tag']) == '视频'):?>
|
|
|
<i class="play-icon"></i>
|
...
|
...
|
@@ -31,7 +31,7 @@ else |
|
|
</div>
|
|
|
<div class="content">
|
|
|
<h2 <?php echo $news['main_title_type'] == 1 ? 'class="volupia"':'';?>>
|
|
|
<a href="<?php echo url('news/detail' ,array('id' => $news['id']))?>"><?php echo $news['title'];?></a>
|
|
|
<a href="<?php echo url('news/detail' ,array('id' => $news['id']))?>" target="_blank"><?php echo $news['title'];?></a>
|
|
|
</h2>
|
|
|
<p class="text-content"><?php echo $description;?></p>
|
|
|
<p class="time"><?php echo date('Y.m.d', $news['create_time'])?></p>
|
...
|
...
|
|