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

19 行
690 B
PHP

@extends('layout')
@section('content')
<div id="content" tabindex="-1" class="main-col">
<div class="main-row">
<h1 class="sr-only">ディスカバー</h1>
<div class="margin-content">
@if (!empty($res['video']->categories)) @include('layout.component.videos.categories') @endif
@if (!empty($res['video']->tags)) @include('layout.component.videos.tags') @endif
@if (!empty($res['video']->channels)) @include('layout.component.videos.channels') @endif
<div style="margin-top: 16px;"></div>
@include('layout.component.common.paginate', [
'root' => '/videos/overview'
])
</div>
</div>
</div>
@endsection