Move author config to top-level
Alan Pearce alan@alanpearce.eu
Wed, 05 Jul 2017 21:50:17 +0200
2 files changed, 8 insertions(+), 8 deletions(-)
M config/default.toml → config/default.toml
@@ -3,13 +3,13 @@ port = 3000 [site] -[site.author] -name = "John Doe" -photo = "/static/johndoe.jpg" - [[site.nav]] text = "Home" url = "/" + +[author] +name = "John Doe" +photo = "/static/johndoe.jpg" [posts] folder = "./posts"
M src/responders.js → src/responders.js
@@ -64,11 +64,11 @@ }; function layout(config, pageTitle, pageElement) { return hyperfast(templates.layout, { - title: title(config.site.author.name, pageTitle), - ".h-card .p-name": config.site.author.name, + title: title(config.author.name, pageTitle), + ".h-card .p-name": config.author.name, ".h-card .u-photo": { - alt: config.site.author.name, - src: config.site.author.photo + alt: config.author.name, + src: config.author.photo }, "header nav li": config.site.nav.map(l => ({ a: {