Initial editor functionality
This commit is contained in:
26
src/app/pages/editor/editor.page.html
Normal file
26
src/app/pages/editor/editor.page.html
Normal file
@@ -0,0 +1,26 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user