Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. <ion-menu type="overlay" side="left" [content]="content">
  2. <ion-content>
  3. <div [style.background-image]="' url('+ userPic +')'" class="user-box">
  4. <img [src]="userPic" />
  5. <h2>Gabriela Duarte
  6. <small>gabriela@sgeo.com.br</small>
  7. </h2>
  8. </div>
  9. <ion-list padding>
  10. <ion-item class="home" [navPush]="homePage">
  11. Home
  12. </ion-item>
  13. <ion-item class="bill">
  14. Boletim
  15. </ion-item>
  16. <ion-item class="daily">
  17. Diário
  18. </ion-item>
  19. <ion-item class="occ">
  20. Ocorrências
  21. </ion-item>
  22. </ion-list>
  23. <button type="button" class="logout" menuToggle>Desconectar</button>
  24. </ion-content>
  25. </ion-menu>
  26.  
  27. <!-- Disable swipe-to-go-back because it's poor UX to combine STGB with side menus -->
  28. <ion-nav [root]="rootPage" #content swipeBackEnabled="false"></ion-nav>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement