We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
page.title
Bad
if (page.title === 'Homepage') hideSidebar();
Good
if (page.pathname === "") hideSidebar();
if (page.originalPath === "documentation") addDocumentations();
if (!page.showSidebar) hideSidebar();