14 lines
442 B
HTML
14 lines
442 B
HTML
<article class="content-container stack page">
|
|
<h1>{{ page().title }}</h1>
|
|
<p class="lead">{{ page().description }}</p>
|
|
<aside class="scaffolding-note" role="note">{{ shell().scaffoldingNote }}</aside>
|
|
@if (showLegalNotice()) {
|
|
<p class="legal-notice" role="note">{{ shell().legalReviewNotice }}</p>
|
|
}
|
|
@if (isNotFound()) {
|
|
<p>
|
|
<a [routerLink]="homeLink()">{{ shell().notFoundHomeLabel }}</a>
|
|
</p>
|
|
}
|
|
</article>
|