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

22 行
2.1 KiB
PHP

<div class="video-info-channel-left d-flex">
<my-video-avatar-channel>
<div class="wrapper">
<my-actor-avatar class="channel">
<a title="{{ $res['detail']->channel->name }}{{ $res['detail']->channel->host != 'video.076.ne.jp' ? '@'.$res['detail']->channel->host : '' }} (チャンネルページへ) " href="/peertube/c/{{ $res['detail']->channel->name }}{{ $res['detail']->channel->host != 'video.076.ne.jp' ? '@'.$res['detail']->channel->host : '' }}" class="ng-star-inserted">
<img class="avatar channel ng-star-inserted" src="{{ !is_null($res['detail']->channel->avatar) ? 'https://video.076.ne.jp'.$res['detail']->channel->avatar->path : '/img/noicon.jpg' }}" alt="チャンネルのアバター">
</a>
</my-actor-avatar>
<my-actor-avatar class="account">
<a title="{{ $res['detail']->account->name }}{{ $res['detail']->account->host != 'video.076.ne.jp' ? '@'.$res['detail']->account->host : '' }} (アカウントページへ) " href="/peertube/a/{{ $res['detail']->account->name }}{{ $res['detail']->account->host != 'video.076.ne.jp' ? '@'.$res['detail']->account->host : '' }}" class="ng-star-inserted">
<img class="account avatar ng-star-inserted" src="{{ !is_null($res['detail']->account->avatar) ? 'https://video.076.ne.jp'.$res['detail']->account->avatar->path : '/img/noicon.jpg' }}" alt="アカウントのアバター">
</a>
</my-actor-avatar>
</div>
</my-video-avatar-channel>
<div class="video-info-channel-left-links ml-1">
<a title="チャンネルページ" href="/peertube/c/{{ $res['detail']->channel->name }}{{ $res['detail']->channel->host != 'video.076.ne.jp' ? '@'.$res['detail']->channel->host : '' }}" class="ng-star-inserted"> {{ $res['detail']->channel->displayName }} </a>
<a title="アカウントページ" href="/peertube/a/{{ $res['detail']->account->name }}{{ $res['detail']->account->host != 'video.076.ne.jp' ? '@'.$res['detail']->account->host : '' }}" class="ng-star-inserted">
<span>{{ $res['detail']->account->name }}{{ $res['detail']->account->host != 'video.076.ne.jp' ? '@'.$res['detail']->account->host : '' }} 制作</span>
</a>
</div>
</div>