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

43 行
1.5 KiB
PHP
Raw 通常表示 履歴

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