feat: add configurable navigation
Alan Pearce alan@alanpearce.eu
Sun, 02 Jul 2017 16:22:35 +0200
5 files changed, 22 insertions(+), 1 deletions(-)
M config/default.toml → config/default.toml
@@ -7,6 +7,10 @@ [site.author] name = "John Doe" photo = "/static/johndoe.jpg" +[[site.nav]] +text = "Home" +url = "/" + [posts] folder = "./posts"
M src/responders.js → src/responders.js
@@ -70,6 +70,12 @@ ".h-card .u-photo": { alt: config.site.author.name, src: config.site.author.photo }, + "header nav li": config.site.nav.map(l => ({ + a: { + href: l.url, + _text: l.text + } + })), "body > main": pageElement.outerHTML }).outerHTML.trim(); }
M src/templates/layout.html → src/templates/layout.html
@@ -10,6 +10,11 @@ <a class="u-url" href="/"> <img class="u-photo" alt="" src="" /> <h1 class="p-name">hello world</h1> </a> + <nav> + <ul> + <li><a href="/">test link</a></li> + </ul> + </nav> </header> <main></main> </body>
M test/app.test.js → test/app.test.js
@@ -43,6 +43,8 @@ const $ = parseResponse(res); t.is($("head > title").text(), "John Doe", "head title is site author"); t.is($("main").length, 1, "only one <main> tag"); + t.is($("nav a").first().text(), "Home", "nav link has text"); + t.is($("nav a").first().attr("href"), "/", "nav links to homepage"); const options = toMicroformatsOptions($); const count = await mf.countAsync(options);
M test/testsite/config.toml → test/testsite/config.toml
@@ -1,2 +1,6 @@ [posts] -folder = "./posts"+folder = "./posts" + +[[site.nav]] +text = "Home" +url = "/"