Don't render anything on docs if /docs

pull/8435/head
Puru Vijay 3 years ago
parent 1f0f6d7680
commit 2ad6029750

@ -14,40 +14,42 @@
{/if} {/if}
</svelte:head> </svelte:head>
<Shell nav_visible={$page.url.pathname !== '/repl/embed'}> <div style:display={$page.url.pathname !== '/docs' ? 'contents' : 'none'}>
<Nav logo="/svelte-logo.svg"> <Shell nav_visible={$page.url.pathname !== '/repl/embed'}>
<svelte:fragment slot="nav-center"> <Nav logo="/svelte-logo.svg">
{#if $page.url.pathname !== '/search'} <svelte:fragment slot="nav-center">
<li><Search /></li> {#if $page.url.pathname !== '/search'}
{/if} <li><Search /></li>
</svelte:fragment> {/if}
</svelte:fragment>
<svelte:fragment slot="nav-right"> <svelte:fragment slot="nav-right">
<NavItem href="/tutorial">Tutorial</NavItem> <NavItem href="/tutorial">Tutorial</NavItem>
<NavItem href="/docs/introduction">Docs</NavItem> <NavItem href="/docs/introduction">Docs</NavItem>
<NavItem href="/examples">Examples</NavItem> <NavItem href="/examples">Examples</NavItem>
<NavItem href="/repl">REPL</NavItem> <NavItem href="/repl">REPL</NavItem>
<NavItem href="/blog">Blog</NavItem> <NavItem href="/blog">Blog</NavItem>
<NavItem href="/faq">FAQ</NavItem> <NavItem href="/faq">FAQ</NavItem>
<Separator /> <Separator />
<NavItem external="https://kit.svelte.dev">SvelteKit</NavItem> <NavItem external="https://kit.svelte.dev">SvelteKit</NavItem>
<NavItem external="/chat" title="Discord Chat"> <NavItem external="/chat" title="Discord Chat">
<span slot="small">Discord</span> <span slot="small">Discord</span>
<Icon name="message-square" /> <Icon name="message-square" />
</NavItem> </NavItem>
<NavItem external="https://github.com/sveltejs/svelte" title="GitHub Repo"> <NavItem external="https://github.com/sveltejs/svelte" title="GitHub Repo">
<span slot="small">GitHub</span> <span slot="small">GitHub</span>
<Icon name="github" /> <Icon name="github" />
</NavItem> </NavItem>
</svelte:fragment> </svelte:fragment>
</Nav> </Nav>
<slot /> <slot />
</Shell> </Shell>
</div>
{#if browser} {#if browser}
<SearchBox /> <SearchBox />

Loading…
Cancel
Save