There is no build for the element or site utilities like PrismJS yet, so this site only works locally at the moment.
10 lines
202 B
JavaScript
10 lines
202 B
JavaScript
module.exports = function(data) {
|
|
return `
|
|
<nav>
|
|
<a href="/docs/">Home</a>
|
|
<a href="/docs/examples/">Examples</a>
|
|
<a href="/docs/api/">API</a>
|
|
<a href="/docs/install/">Install</a>
|
|
</nav>`;
|
|
};
|