https://github.com/angular/angular
Raw File
Tip revision: 9616b086ea8ea978f9540b746993a882e04fe970 authored by Alex Rickabaugh on 10 December 2021, 18:55:01 UTC
release: cut the v12.2.15 release (#44432)
Tip revision: 9616b08
mode-banner.component.ts
import { Component, Input } from '@angular/core';
import { VersionInfo } from 'app/navigation/navigation.service';

@Component({
  selector: 'aio-mode-banner',
  template: `
    <div *ngIf="mode === 'archive'" class="mode-banner alert archive-warning">
      <p>
        This is the <strong>archived documentation for Angular v{{ version?.major }}.</strong> Please visit
        <a href="https://angular.io/">angular.io</a> to see documentation for the current version of Angular.
      </p>
    </div>
  `,
})
export class ModeBannerComponent {
  @Input() mode: string;
  @Input() version: VersionInfo;
}
back to top