]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+about/about-follows/about-follows.component.html
Migrate to bootstrap 5
[github/Chocobozzz/PeerTube.git] / client / src / app / +about / about-follows / about-follows.component.html
CommitLineData
49c4dd7e 1<div class="row">
4c8749cb
C
2 <h1 class="visually-hidden" i18n>Follows</h1>
3
a6dbbf03 4 <div class="col-xl-6 col-md-12">
db8b2f56 5 <h2 i18n class="subtitle">Follower instances ({{ followersPagination.totalItems }})</h2>
a6dbbf03 6
97ecddae 7 <div i18n class="no-results" *ngIf="followersPagination.totalItems === 0">This instance does not have instances followers.</div>
a6dbbf03
C
8
9 <a *ngFor="let follower of followers" [href]="buildLink(follower)" target="_blank" rel="noopener noreferrer">
0d7c7314 10 {{ follower}}
a6dbbf03 11 </a>
0d7c7314 12
4076e2ef 13 <button i18n class="show-more" *ngIf="!loadedAllFollowers && canLoadMoreFollowers()" (click)="loadAllFollowers()">Show full list</button>
a6dbbf03
C
14 </div>
15
16 <div class="col-xl-6 col-md-12">
1fa87405 17 <h2 i18n class="subtitle">Following instances ({{ followingsPagination.totalItems }})</h2>
a6dbbf03 18
dc5bb5ce 19 <div i18n class="no-results" *ngIf="followingsPagination.totalItems === 0">This instance is not following any other.</div>
a6dbbf03
C
20
21 <a *ngFor="let following of followings" [href]="buildLink(following)" target="_blank" rel="noopener noreferrer">
22 {{ following }}
23 </a>
0d7c7314 24
931d3430 25 <button i18n class="show-more" *ngIf="!loadedAllFollowings && canLoadMoreFollowings()" (click)="loadAllFollowings()">Show full list</button>
a6dbbf03
C
26 </div>
27
28</div>