mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-17 07:50:12 +01:00
27 lines
1,006 B
HTML
27 lines
1,006 B
HTML
<nb-layout>
|
|
<nb-layout-header fixed>
|
|
<div class="content-center">
|
|
<ngx-landing-header class="docs-header" [sidebarTag]="sidebarTag" [isDocs]="true">
|
|
<ngx-material-theme-link withPopover></ngx-material-theme-link>
|
|
</ngx-landing-header>
|
|
</div>
|
|
</nb-layout-header>
|
|
<nb-sidebar class="menu-sidebar" [tag]="sidebarTag" [responsive]="true" [compactedBreakpoints]="[]" [collapsedBreakpoints]="collapsedBreakpoints">
|
|
<nb-menu [items]="menuItems" tag="leftMenu"></nb-menu>
|
|
</nb-sidebar>
|
|
<nb-layout-column>
|
|
<router-outlet></router-outlet>
|
|
|
|
<div class="contact-us">
|
|
<h2>Need some help or found an issue?</h2>
|
|
<p>
|
|
Ask on <a href="https://stackoverflow.com/questions/ask">Stack Overflow</a> with tag `ngx-admin` or
|
|
post an issue on <a href="https://github.com/akveo/ngx-admin/issues/new">GitHub</a>.
|
|
</p>
|
|
</div>
|
|
</nb-layout-column>
|
|
<nb-layout-footer>
|
|
<ngx-docs-footer></ngx-docs-footer>
|
|
</nb-layout-footer>
|
|
</nb-layout>
|
|
|