AppShell

App

Tam ekran layout wrapper. sidebarContent, topbarContent ve logoContent HTML slot'ları alır. Mobilde hamburger butonu NavDrawer açar.

Sidebar + topbar + content

Preview
Search…
JD
Code
<%- include('modules/app/AppShell', {
  logoContent:  'Acme',
  sidebarContent: '<%- include("modules/app/AppSidebar", { navGroups: navGroups, activeId: activeId, searchable: true }) %>',
  topbarContent:  '<%- include("modules/app/AppTopBar", { children: topbarHtml }) %>',
  children: bodyHtml
}) %>

Sadece topbar (sidebar yok)

Preview
Search…
JD
Code
<%- include('modules/app/AppShell', {
  topbarContent: '<%- include("modules/app/AppTopBar", { children: topbarHtml }) %>',
  children: bodyHtml
}) %>
Source modules/app/AppShell.ejs