{#if $global_navigator.path.length > 1}
Parent directories
global_navigator.navigate_up()}>
north
{#each $global_navigator.path.slice(0, $global_navigator.path.length-1) as node (node.id)} {#if node.type === "dir"}
{#if node.is_shared()}
folder_shared
{:else}
folder
{/if}
{node.name}
{/if} {/each}
{/if} {#if siblings.length !== 0}
global_navigator.open_sibling(-1)}>
west
Siblings
global_navigator.open_sibling(1)}>
east
{#each siblings as node (node.id)} {#if !node.is_hidden()}
{#if node.is_shared()}
folder_shared
{:else if node.type === "dir"}
folder
{:else}
image
{/if}
{node.name}
{/if} {/each}
{/if}