mirror of
https://github.com/fabioformosa/quartz-manager.git
synced 2026-05-21 01:00:29 +09:00
12 lines
343 B
HTML
12 lines
343 B
HTML
@if (isOperationsConsoleRoute()) {
|
|
<router-outlet></router-outlet>
|
|
} @else {
|
|
<div class="app-shell flex flex-column justify-space-between h-100">
|
|
<app-header class="flex-none"></app-header>
|
|
<div class="content flex h-100">
|
|
<router-outlet></router-outlet>
|
|
</div>
|
|
<app-footer class="flex-none"></app-footer>
|
|
</div>
|
|
}
|