Separate tomahawk nodes & network pages, misc fixes

This commit is contained in:
Mononaut
2024-03-04 18:35:34 +00:00
parent 5f3ca3a321
commit 73e9c85ff1
10 changed files with 181 additions and 76 deletions

View File

@@ -0,0 +1,14 @@
<div class="tomahawk container-xl dashboard-container">
<div class="links">
<a [routerLink]='"/nodes"'>Status</a>
<span>Live</span>
</div>
<h1 class="dashboard-title">Live Network</h1>
<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>