journal-home.component.html 483 B

12345678910111213141516
  1. <div class="journal-container">
  2. <!-- Here the different pages are rendered -->
  3. <router-outlet></router-outlet>
  4. <!-- <app-tabbar id="tabbar" [class]="hideTabbar() ? 'hidden' : ''"></app-tabbar> -->
  5. <tab-bar #tabbar id="tabbar" [class]="hideTabbar() ? 'hidden' : ''"></tab-bar>
  6. <details-panel></details-panel>
  7. <navigation-panel
  8. [showAdditionalNavigation]="hideTabbar()"
  9. (activeTabChanged)="onNavigationUpdated()"
  10. ></navigation-panel>
  11. <modal></modal>
  12. </div>