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.
 
 
 
 
 

31 lines
1.2 KiB

<sqx-title message="i18n:contents.schemasPageTitle"></sqx-title>
<sqx-layout layout="left" titleCollapsed="i18n:common.schemas" [width]="18" [white]="true" [padding]="true" [overflow]="true">
<ng-container menu>
<div class="search-form">
<input class="form-control" [formControl]="schemasFilter" placeholder="{{ 'contents.searchSchemasPlaceholder' | sqxTranslate }}">
<i class="icon-search"></i>
</div>
</ng-container>
<ng-container>
<ul class="nav nav-light mb-2 flex-column">
<li class="nav-item">
<a class="nav-link" routerLink="__calendar" routerLinkActive="active">
{{ 'contents.calendar' | sqxTranslate }}
</a>
</li>
</ul>
<ng-container *ngIf="schemasState.publishedSchemas | async; let schemas">
<sqx-schema-category *ngFor="let category of schemasState.categories | async; trackBy: trackByCategory"
[schemaCategory]="category"
[schemasFilter]="schemasFilter.valueChanges | async"
[forContent]="true">
</sqx-schema-category>
</ng-container>
</ng-container>
</sqx-layout>
<router-outlet></router-outlet>