AppShell

App

Full-screen layout wrapper with logo, sidebar and topbar slots. Sidebar renders as an aside on desktop and opens via a drawer on mobile.

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