Fix URLs a bit

This commit is contained in:
Justin Fagnani
2019-12-20 11:54:58 -08:00
committed by Justin Fagnani
parent 208789fa73
commit 817f502dfa
7 changed files with 42 additions and 42 deletions

View File

@@ -1,9 +1,9 @@
module.exports = function(data) {
return `
<nav>
<a href="/">Home</a>
<a href="/examples/">Examples</a>
<a href="/api/">API</a>
<a href="/install/">Install</a>
<a href="../">Home</a>
<a href="../examples/">Examples</a>
<a href="../api/">API</a>
<a href="../install/">Install</a>
</nav>`;
};