27 lines
676 B
HTML
27 lines
676 B
HTML
|
<ion-header>
|
||
|
<ion-toolbar>
|
||
|
<ion-title>Note Editor</ion-title>
|
||
|
</ion-toolbar>
|
||
|
</ion-header>
|
||
|
|
||
|
<ion-content>
|
||
|
<ng-container>
|
||
|
<div class="editor-buttons">
|
||
|
<ion-button class="ion-padding ion-margin">Save</ion-button>
|
||
|
</div>
|
||
|
<div class="editor-root ion-padding">
|
||
|
Hello, world!
|
||
|
|
||
|
<div class="host-container ion-padding">
|
||
|
<editor-host
|
||
|
#editorHosts
|
||
|
*ngFor="let record of hostRecords"
|
||
|
[(record)]="record"
|
||
|
(newHostRequested)="onNewHostRequested($event)"
|
||
|
(destroyHostRequested)="onDestroyHostRequested($event)"
|
||
|
></editor-host>
|
||
|
</div>
|
||
|
</div>
|
||
|
</ng-container>
|
||
|
</ion-content>
|