Headless CMS and Content Managment Hub
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

17 lines
519 B

<sqx-modal-dialog size="lg" (close)="close.emit()">
<ng-container title>
{{ 'news.title' | sqxTranslate }}
</ng-container>
<ng-container content>
<div class="help">
<h1>{{ 'news.headline' | sqxTranslate }}</h1>
<div *ngFor="let feature of features; trackBy: trackByFeature">
<h4>{{feature.name}}</h4>
<div [innerHTML]="feature.text | sqxHelpMarkdown"></div>
</div>
</div>
</ng-container>
</sqx-modal-dialog>