aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+about/about-follows/about-follows.component.html
blob: c2228b955853b4459759a69ec8114bfb896cc921 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<div class="row">
  <h1 class="sr-only" i18n>Follows</h1>
  <div class="col-xl-6 col-md-12">
    <h2 i18n class="subtitle">Followers instances ({{ followersPagination.totalItems }})</h2>

    <div i18n class="no-results" *ngIf="followersPagination.totalItems === 0">This instance does not have instances followers.</div>

    <a *ngFor="let follower of followers" [href]="buildLink(follower)" target="_blank" rel="noopener noreferrer">
      {{ follower}}
    </a>

    <button i18n class="showMore" *ngIf="!loadedAllFollowers && canLoadMoreFollowers()" (click)="loadAllFollowers()">Show full list</button>
  </div>

  <div class="col-xl-6 col-md-12">
    <h2 i18n class="subtitle">Followings instances ({{ followingsPagination.totalItems }})</h2>

    <div i18n class="no-results" *ngIf="followingsPagination.totalItems === 0">This instance is not following any other.</div>

    <a *ngFor="let following of followings" [href]="buildLink(following)" target="_blank" rel="noopener noreferrer">
      {{ following }}
    </a>

    <button i18n class="showMore" *ngIf="!loadedAllFollowings && canLoadMoreFollowings()" (click)="loadAllFollowings()">Show full list</button>
  </div>

</div>