调整新闻列表页新闻标题与时间标记距离。

This commit is contained in:
Li Heng 2014-06-17 00:07:35 +00:00
parent 29e28b0be7
commit 4e59336d25
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ $this->breadcrumb()->setSeparator(' > ');
$description = $v['description']; $description = $v['description'];
} }
?> ?>
<li><a href="<?php echo $v['url']; ?>"><?php echo $v['title']; ?></a> <small>[<?php echo date("Y-m-d",strtotime( $v['ts_published'] )); ?>]</small></li> <li><a href="<?php echo $v['url']; ?>"><?php echo $v['title']; ?></a> <small class="pull-right">[<?php echo date("Y-m-d",strtotime( $v['ts_published'] )); ?>]</small></li>
<?php <?php
} }
} }