kokjan/frontend/views/post/_post_ul.php

33 lines
694 B
PHP

<?php
/**
* Created by HanumanIT Co.,Ltd.
* User: kongoon
* Date: 2020-02-10
* Time: 00:05
*/
use yii\helpers\Html;
use yii\helpers\StringHelper;
?>
<style>
ul#w0 {
list-style: unset;
}
.post-li a {
color: #007600;
}
.post-li a:hover {
color: black;
}
</style>
<div class="post-li">
<?= Html::a('<span class="card-title">' . $model->name . '</span>', ['/post/view', 'id' => $model->id, 'slug' => Yii::$app->abt->simpleSlug($model->name)]) ?>
<small>
<span class="fa fa-calendar"></span> <?= Yii::$app->formatter->asDatetime($model->publish_at) ?>
<span class="fa fa-eye"></span> <?= number_format($model->hit) ?>
</small>
</div>