mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
19 lines
No EOL
740 B
HTML
19 lines
No EOL
740 B
HTML
@if (!hasClosed()) {
|
|
@if (link()) {
|
|
<a [href]="link()" class="docs-top-level-banner">
|
|
<h1 tabindex="-1" class="docs-top-level-banner-cta shimmer">{{ text() }}</h1>
|
|
<h1 tabindex="0" class="docs-top-level-banner-cta background"><span class="docs-top-level-banner-cta__text">{{ text()
|
|
}}</span></h1>
|
|
</a>
|
|
} @else {
|
|
<div class="docs-top-level-banner">
|
|
<h1 tabindex="-1" class="docs-top-level-banner-cta shimmer">{{ text() }}</h1>
|
|
<h1 tabindex="0" class="docs-top-level-banner-cta background"><span class="docs-top-level-banner-cta__text">{{ text()
|
|
}}</span></h1>
|
|
</div>
|
|
}
|
|
|
|
<button class="docs-top-level-banner-close" type="button" (click)="close()">
|
|
<docs-icon class="docs-icon_high-contrast">close</docs-icon>
|
|
</button>
|
|
} |