You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
417 B
14 lines
417 B
extends ../layouts/main
|
|
block content
|
|
|
|
h1 Core Nodes
|
|
a(href="/admin/core-node/connect").uk-button.uk-button-primary Connect Core
|
|
|
|
p You can register with one or more Core nodes to exchange information with those nodes.
|
|
|
|
if Array.isArray(coreNodes) && (coreNodes.length > 0)
|
|
ul.uk-list
|
|
each node in coreNodes
|
|
pre= JSON.stringify(node, null, 2)
|
|
else
|
|
p There are no registered core nodes.
|