このリポジトリは2023-09-09にアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュ、イシューの作成、プルリクエストはできません。
076server/resources/views/pages/site/video/game/popularest.blade.php

14 行
614 B
PHP

<div class="row">
<div class="col">
<div class="kero-section">人気な動画</div>
</div>
</div>
<div class="row">
@foreach ($pop as $p)
<div class="col-3">
<div class="thumb"><a href="/video/play/{{ $p->vid }}"><img width="170" height="96" src="{{ ($p->thumbnail ?: '/img/noicon.jpg') }}" alt="{{ $p->title }}" /></a></div>
<div class="title" style="font-size: 90%;"><a href="/video/play/{{ $p->vid }}">{{ $p->title }}</a></div>
<div class="videodate" style="font-size: 60%; color: #bdc3c7;">{{ date('Y年m月d日 H:i:s', $p->publish_date) }}</div>
</div>
@endforeach
</div>