_blog_item.php 2.86 KB
<?php
    use common\components\artboximage\ArtboxImageHelper;
    use common\models\Blog;
    use yii\helpers\Html;
    use yii\helpers\Url;
    use yii\widgets\ListView;
    
    /**
     * @var Blog     $model
     * @var mixed    $key
     * @var integer  $index
     * @var ListView $widget
     */

?>

<div class="blog1">
    <div class="picture" style="background-image:url('<?php
        echo ArtboxImageHelper::getImageSrc($model->getImageUrl(), 'blog_thumb');
    ?>');"></div>
    <div class="text">
        <div class="title"><?php echo $model->title; ?></div>
        <div class="tags">
            <?php foreach($model->categories as $category) { ?>
                <span class="blog_tag">
                            <a href="<?php
                                echo Url::to([
                                    'blog/category',
                                    'id' => $category->id,
                                ]);
                            ?>"><?php echo $category->name; ?></a>
            </span>
            <?php } ?>
            <span class="date"><?php
                    echo \Yii::t('app', date('F', $model->date)), ' ', date('d, Y', $model->date);
                ?></span>
        </div>
        <div class="picture" style="background-image:url('<?php
            echo ArtboxImageHelper::getImageSrc($model->getImageUrl(), 'blog_thumb');
        ?>');">
            <ul class="shares">
                <li><a target="_blank" href="http://www.facebook.com/sharer/sharer.php?u=<?php
                        echo Url::to([
                            'blog/view',
                            'id' => $model->id,
                        ], true);
                    ?>" class="fb"></a></li>
                <li><a target="_blank" href="http://pinterest.com/pin/create/button/?url=<?php
                        echo Url::to([
                            'blog/view',
                            'id' => $model->id,
                        ], true);
                    ?>" class="ptst"></a></li>
                <li><a target="_blank" href="https://plus.google.com/share?url=<?php
                        echo Url::to([
                            'blog/view',
                            'id' => $model->id,
                        ], true);
                    ?>" class="gpl"></a></li>
                <li><a target="_blank" href="http://vk.com/share.php?url=<?php
                        echo Url::to([
                            'blog/view',
                            'id' => $model->id,
                        ], true);
                    ?>" class="vk"></a></li>
            </ul>
        </div>
        <p><?php echo $model->body_preview; ?></p>
        <div class="link_to_post">
            <a href="<?php echo Url::to([
                'blog/view',
                'id' => $model->id,
            ]) ?>" class="big">Узнать больше</a>
        </div>
    </div>
</div>