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

43 行
1.7 KiB
PHP

<div _ngcontent-jba-c163="" class="videos">
@if (!empty($res['video']['today']))
<h2 _ngcontent-jba-c163="" class="date-title ng-star-inserted"> 今日 </h2>
@foreach ($res['video']['today'] as $v)
@include('theme.'.env('THEME').'.component.peertube.parts.common.videominature')
@endforeach
@endif
@if (!empty($res['video']['yesterday']))
<h2 _ngcontent-jba-c163="" class="date-title ng-star-inserted"> 今日 </h2>
@foreach ($res['video']['today'] as $v)
@include('theme.'.env('THEME').'.component.peertube.parts.common.videominature')
@endforeach
@endif
@if (!empty($res['video']['week']))
<h2 _ngcontent-jba-c163="" class="date-title ng-star-inserted"> 今週 </h2>
@foreach ($res['video']['week'] as $v)
@include('theme.'.env('THEME').'.component.peertube.parts.common.videominature')
@endforeach
@endif
@if (!empty($res['video']['month']))
<h2 _ngcontent-jba-c163="" class="date-title ng-star-inserted"> 今月 </h2>
@foreach ($res['video']['month'] as $v)
@include('theme.'.env('THEME').'.component.peertube.parts.common.videominature')
@endforeach
@endif
@if (!empty($res['video']['lastmonth']))
<h2 _ngcontent-jba-c163="" class="date-title ng-star-inserted"> 先月 </h2>
@foreach ($res['video']['lastmonth'] as $v)
@include('theme.'.env('THEME').'.component.peertube.parts.common.videominature')
@endforeach
@endif
@if (!empty($res['video']['moreearly']))
<h2 _ngcontent-jba-c163="" class="date-title ng-star-inserted"> もっと前 </h2>
@foreach ($res['video']['moreearly'] as $v)
@include('theme.'.env('THEME').'.component.peertube.parts.common.videominature')
@endforeach
@endif
</div>