client/src/app/+about/about-follows/about-follows.component.html
This is content to which we have subscribed. This allows us to display their videos directly on {{ instanceName }}.
@if (subscriptionsPagination.totalItems === 0) { {{ instanceName }} does not have subscriptions. } @for (subscription of subscriptions; track subscription) {
{{ subscription.name }}
}
@if (canLoadMoreSubscriptions()) { Show more subscriptions } @if (serverStats) {
{{ serverStats.totalVideos | number }} total videos
{{ serverStats.totalVideoComments | number }} total comments
}
Our subscribers automatically display videos of {{ instanceName }} on their platforms.
@if (followersPagination.totalItems === 0) { {{ instanceName }} does not have followers. } @for (follower of followers; track follower) {
{{ follower.name }}
} @if (canLoadMoreFollowers()) { Show more followers }