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

18 行
831 B
PHP

<div class="margin-content offset-content">
<div class="row">
<h1 class="sr-only">フォロー</h1>
<div class="col-xl-6 col-md-12">
<h2 class="subtitle">フォロワーのインスタンス({{ $res['follower']->total }})</h2>
@foreach ($res['follower']->data as $x)
<a class="ablock" target="_blank" rel="noopener noreferrer" href="https://{{ $x->follower->host }}"> {{ $x->follower->host }} </a>
@endforeach
</div>
<div class="col-xl-6 col-md-12">
<h2 class="subtitle">フォローしてるインスタンス({{ $res['following']->total }})</h2>
@foreach ($res['following']->data as $y)
<a class="ablock" target="_blank" rel="noopener noreferrer" href="https://{{ $y->following->host }}"> {{ $y->following->host }} </a>
@endforeach
</div>
</div>
</div>