]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+about/about-follows/about-follows.component.html
reword unclear sentences, check for grammar
[github/Chocobozzz/PeerTube.git] / client / src / app / +about / about-follows / about-follows.component.html
CommitLineData
ad453580 1<div class="row" myInfiniteScroller [autoInit]="true" (nearOfBottom)="onNearOfBottom()" [dataObservable]="onDataSubject.asObservable()">
c9e3565d 2 <h1 class="sr-only" i18n>Follows</h1>
a6dbbf03 3 <div class="col-xl-6 col-md-12">
c9e3565d 4 <h2 i18n class="subtitle">Followers instances</h2>
a6dbbf03 5
97ecddae 6 <div i18n class="no-results" *ngIf="followersPagination.totalItems === 0">This instance does not have instances followers.</div>
a6dbbf03
C
7
8 <a *ngFor="let follower of followers" [href]="buildLink(follower)" target="_blank" rel="noopener noreferrer">
9 {{ follower }}
10 </a>
11 </div>
12
13 <div class="col-xl-6 col-md-12">
c9e3565d 14 <h2 i18n class="subtitle">Followings instances</h2>
a6dbbf03 15
dc5bb5ce 16 <div i18n class="no-results" *ngIf="followingsPagination.totalItems === 0">This instance is not following any other.</div>
a6dbbf03
C
17
18 <a *ngFor="let following of followings" [href]="buildLink(following)" target="_blank" rel="noopener noreferrer">
19 {{ following }}
20 </a>
21 </div>
22
23</div>