All files / src/app/components/global-error global-error.component.html

86.36% Statements 19/22
100% Branches 0/0
100% Functions 0/0
100% Lines 9/9

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15    1x 52x 1x   1x 1x 1x 52x 52x     1x  
<section class="hero is-fullheight is-flex is-justify-content-center">
    <div class="grid">
        <div class="cell">
            <img class="illus" [src]="image" alt="alien-invasion">
        </div>
        <div class="cell">
            <h1 class="title">Server is gone (cannot reach)</h1>
            <p>Check for an alien invasion or a galactic black hole.</p>
            <p>Ultimately check your internet connection.</p>
            <p *ngIf="nextPingWait">Retrying in {{nextPingWait}} seconds ...</p>
            <p *ngIf="!nextPingWait">Retrying...</p>
        </div>
    </div>
</section>