.page
section.section
.container.is-fluid
h3.title.is-3.has-text-centered {{ node.type }}
//- p.subtitle -
//- h1
.content
.columns
.column.has-text-centered
h3 Is-used-by
article(v-for="parentId in node.parents")
node-card(v-bind:node="index[parentId]" show-type="true")
//- article
//- column
.column.has-text-centered(style="min-width: 0;")
h3 Current node
article
node-card(v-bind:node="node" show-data="true" show-type="true")
//- article
//- column
.column.has-text-centered
h3 Uses
article(v-for="childId in node.children")
node-card(v-bind:node="index[childId]" show-type="true")
//- article
//- column
//- columns
//- content
//- container
//- section
//- page