Advertisement
Shell_Casing

home page html

May 23rd, 2018
337
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.32 KB | None | 0 0
  1. <ion-header>
  2.   <ion-navbar>
  3.     <ion-title>
  4.       Note Taker
  5.     </ion-title>
  6.   </ion-navbar>
  7. </ion-header>
  8.  
  9. <ion-content padding>
  10.   <ion-list>
  11.     <ion-item  *ngFor="let note of NOTES"> {{note.title}} </ion-item>
  12.   </ion-list>
  13.  
  14.  
  15.   <button ion-button (click)="goToNewNotePage()">New note</button>
  16.  
  17. </ion-content>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement