.page
section.section
.container.is-fluid
h3.title.is-3.has-text-centered Node
p.subtitle {{ node.key }}
//- h1
.content
vis-hierarchy(v-bind:node="node")
div
.columns
.column.has-text-centered
h3 Is-used-by
article(v-for="parentId in node.parents")
node-card(v-bind:node="index[parentId]")
//- article
//- column
.column.has-text-centered(style="min-width: 0;")
h3 Current node
article
node-card(v-bind:node="node" show-data="true")
//- article
//- column
.column.has-text-centered
h3 Uses
article(v-for="childId in node.children")
node-card(v-bind:node="index[childId]")
//- article
//- column
//- columns
hr
h3 All
article(v-for="item in list")
router-link(v-bind:to="'/node/' + item.key") {{ item.key }}
//- article
nuxt-link(to="/" class="button") Home
nuxt-link(to="/stuff" class="button") Stuff
//- div
//- content
//- container
//- section
//- page