.page
section.section
.container.is-fluid
h3.title.is-3.has-text-centered {{ node.key }}
//- p.subtitle -
//- h1
.content
div
.columns
.column.has-text-centered(style="min-width: 0;")
h3 Current node
node-card(v-bind:node="node" show-data="true")
//- 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