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 | 1x 1x 1x | import { ChangeDetectionStrategy, Component, Input } from '@angular/core';
import { ContentPageletView } from 'ish-core/models/content-view/content-view.model';
import { CMSComponent } from 'ish-shared/cms/models/cms-component/cms-component.model';
/**
* The CMS Standard Page Component to render CMS content of the 'Standard Page' page variant model.
* Note: For the PWA the it only renders the content of the 'content' slot.
* The 'header' and 'footer' slot content is not rendered.
*/
@Component({
selector: 'ish-cms-standard-page',
templateUrl: './cms-standard-page.component.html',
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class CMSStandardPageComponent implements CMSComponent {
@Input() pagelet: ContentPageletView;
}
|