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

13 行
634 B
PHP
Raw 通常表示 履歴

2021-12-16 15:42:24 +09:00
<div class="section channel videos ng-star-inserted">
<div class="section-title">
2021-12-19 23:33:48 +09:00
<a href="/peertube/c/{{ ptFullHandle($res['video']->channels[0]->channel) }}">
2021-12-16 15:42:24 +09:00
<my-actor-avatar>
2021-12-19 23:40:12 +09:00
<img class="avatar channel ng-star-inserted" src="{{ ptAvatar($res['video']->channels[0]->channel) }}" alt="チャンネルのアバター">
2021-12-16 15:42:24 +09:00
</my-actor-avatar>
<h2 class="section-title">{{ $res['video']->channels[0]->channel->displayName }}</h2>
</a>
</div>
@foreach ($res['video']->channels[0]->videos as $k => $v)
2021-12-16 22:26:17 +09:00
@include('theme.'.env('THEME').'.component.peertube.common.videominature')
2021-12-16 15:42:24 +09:00
@endforeach
</div>