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

14 行
656 B
PHP

<div class="row">
<div class="col">
<div class="kero-section">最新投稿された動画</div>
</div>
</div>
<div class="row">
@foreach ($new as $n)
<div class="col-xl-3 col-lg-6 col-md-6 col-sm-6">
<div class="thumb"><a href="/video/play/{{ $n->vid }}"><img width="170" height="96" src="{{ ($n->thumbnail ?: '/img/noicon.jpg') }}" alt="{{ $n->title }}" /></a></div>
<div class="title" style="font-size: 90%;"><a href="/video/play/{{ $n->vid }}">{{ $n->title }}</a></div>
<div class="videodate" style="font-size: 60%; color: #bdc3c7;">{{ date('Y年m月d日 H:i:s', $n->publish_date) }}</div>
</div>
@endforeach
</div>