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 16 17 18 19 20 21 22 23 24 25 26 27 | 1x 2x 2x 1x 2x 2x 2x 1x 2x | <section class="not-found-page">
<header class="not-found-header">
<h1>{{ 'notFound.title' | transloco }}</h1>
<p>{{ 'notFound.subtitle' | transloco }}</p>
</header>
<article class="not-found-card">
<h2>{{ 'notFound.cardTitle' | transloco }}</h2>
@if (missingType()) {
<p class="not-found-message">
{{ 'notFound.missingMessagePrefix' | transloco }} <strong>{{ missingType() }}</strong>
@if (missingId()) {
<span>{{ 'notFound.missingWithId' | transloco : { id: missingId() } }}</span>
}
{{ 'notFound.missingMessageSuffix' | transloco }}
</p>
} @else {
<p class="not-found-message">{{ 'notFound.genericMessage' | transloco }}</p>
}
<div class="actions">
<a class="action-btn secondary" routerLink="/lists">{{ 'notFound.toMyLists' | transloco }}</a>
</div>
</article>
</section>
|