19 lines
548 B
PHP
Executable File
19 lines
548 B
PHP
Executable File
<?php
|
|
/**
|
|
* Created by HanumanIT Co.,Ltd.
|
|
* User: kongoon
|
|
* Date: 2020-02-10
|
|
* Time: 00:05
|
|
*/
|
|
|
|
use yii\helpers\Html;
|
|
use yii\helpers\StringHelper;
|
|
|
|
?>
|
|
|
|
<?= Html::a($model->name, ['/post/view', 'slug' => Yii::$app->abt->simpleSlug($model->name), 'id' => $model->id]) ?>
|
|
<small style="color: #097b00">
|
|
<span class="fa fa-calendar"></span> <?= Yii::$app->formatter->asDate($model->publish_at) ?>
|
|
<span class="fa fa-eye"></span> <?= number_format($model->hit) ?>
|
|
<span></span> <?= Yii::$app->abt->getNew($model->publish_at) ?>
|
|
</small>
|