angular/adev/src/app/app.component.html

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
1,004 B
HTML
Raw Normal View History

<button (click)="focusFirstHeading()" class="adev-skip">Skip to main content</button>
@defer (when isBrowser) {
2024-05-03 20:05:52 +00:00
<adev-progress-bar />
<docs-top-level-banner expiry="2024-12-10" id="state-of-js-2024" link="https://survey.devographics.com/en-US/survey/state-of-js/2024?source=angular_homepage" text="Share your experience with Angular in The State of JavaScript 2024 survey" />
}
<div class="adev-nav"></div>
@if (displaySecondaryNav()) {
2024-05-03 20:05:52 +00:00
<adev-secondary-navigation />
}
<div class="docs-app-main-content">
<!--
Avoid rendering cookies popup on the server,
since there is no benefit of doing this and
it requires additional state management.
-->
@defer (when isBrowser) {
<docs-cookie-popup />
@defer (when displaySearchDialog(); prefetch on idle) {
@if (displaySearchDialog()) {
<docs-search-dialog (onClose)="displaySearchDialog.set(false)" />
}
}
}
2024-05-03 20:05:52 +00:00
<router-outlet />
@if (displayFooter()) {
2024-05-03 20:05:52 +00:00
<footer adev-footer></footer>
}
</div>