Skip to content

Best practices handbook

Manvel Saroyan edited this page Jun 2, 2020 · 4 revisions

Avoid page.title for layouting.

Bad

if (page.title === 'Homepage')
  hideSidebar();

Good

if (page.pathname === "")
  hideSidebar();

Good

if (page.originalPath === "documentation")
  addDocumentations();

Good

if (!page.showSidebar)
  hideSidebar();
Clone this wiki locally