2024-03-05 23:16:20 +00:00
|
|
|
<div class="tomahawk">
|
2024-03-06 19:34:12 +00:00
|
|
|
<div class="links">
|
|
|
|
<a [routerLink]='"/monitoring"'>Monitoring</a>
|
|
|
|
<span>Nodes</span>
|
2024-03-04 18:35:34 +00:00
|
|
|
</div>
|
|
|
|
|
2024-03-06 19:34:12 +00:00
|
|
|
<app-start [showLoadingIndicator]="true"></app-start>
|
|
|
|
<app-footer [inline]="true"></app-footer>
|
|
|
|
|
2024-03-04 18:35:34 +00:00
|
|
|
<ng-container *ngFor="let host of hosts; trackBy: trackByFn">
|
|
|
|
<h5 [id]="host.host" class="hostLink">
|
|
|
|
<a [href]="'https://' + host.link">{{ host.link }}</a>
|
|
|
|
</h5>
|
|
|
|
<iframe class="mempoolStatus" [src]="host.statusPage"></iframe>
|
|
|
|
</ng-container>
|
|
|
|
</div>
|