Файл: protected/views/post/_list.php
Строк: 23
<?php
/*
* Вывод статей.
* Например, черновиков, из категории, с определенным тегом и т.п.
*/
?>
<?php if (!count ($postProvider->getData())): ?>
<?php echo CHtml::encode ($empty_message) ?>
<?php else: ?>
<?php foreach ($postProvider->getData () as $post): ?>
<img src="<?php echo Yii::app ()->theme->baseUrl ?>/icons/i.png" alt="i" />
<a<?php if ($post->status == Post::STATUS_DRAFT): ?> class="draft"<?php endif; ?><?php if ($post->id_category == Category::ID_NEWS): ?> class="news"<?php endif; ?> href="<?php echo $this->createUrl ('post/view', array ('id' => $post->id)) ?>"><b>
<?php echo CHtml::encode ($post->title) ?>
</b></a>
<?php $this->renderPartial ('//post/_up_del', array ('post' => $post)) ?><br />
<?php echo CHtml::encode (Yii::app ()->dateFormatter->format ('d MMMM y, HH:mm', $post->create_time)) ?><br />
<?php echo nl2br (bbCode::Format (Smile::Format (CHtml::encode ($post->info_content)))) ?><br />
<a href="<?php echo $this->createUrl ('post/view', array ('id' => $post->id)) ?>">Далее →</a> | <a href="<?php echo $this->createUrl ('post/view', array ('id' => $post->id)) ?>#comment">Комментарии</a> (<?php echo $post->commentCount ?>)<br />
<hr />
<?php endforeach; ?>
<?php endif; ?>
<?php $this->widget ('Pager', array ('pages' => $postProvider->pagination)) ?>