Add site description
Alan Pearce alan@alanpearce.eu
Wed, 05 Jul 2017 22:41:24 +0200
5 files changed, 15 insertions(+), 0 deletions(-)
M config/default.toml → config/default.toml
@@ -2,6 +2,7 @@ [server] port = 3000 [site] +description = "Nobody in particular" [[site.nav]] text = "Home"
M src/responders.js → src/responders.js
@@ -66,6 +66,7 @@ function layout(config, pageTitle, pageElement) { return hyperfast(templates.layout, { title: title(config.author.name, pageTitle), ".h-card .p-name": config.author.name, + ".h-card .p-note": config.site.description, ".h-card .u-photo": { alt: config.author.name, src: config.author.photo
M src/templates/layout.html → src/templates/layout.html
@@ -11,6 +11,7 @@ <a class="u-url" href="/"> <img class="u-photo" alt="" src="" /> <h1 class="p-name">hello world</h1> </a> + <p class="p-note">site description</p> <nav> <ul> <li><a href="/">test link</a></li>
M test/snapshots/app.test.js.md → test/snapshots/app.test.js.md
@@ -15,6 +15,9 @@ properties: { name: [ 'John Doe', ], + note: [ + 'Nobody in particular', + ], photo: [ '/static/johndoe.jpg', ], @@ -96,6 +99,9 @@ { properties: { name: [ 'John Doe', + ], + note: [ + 'Nobody in particular', ], photo: [ '/static/johndoe.jpg', @@ -169,6 +175,9 @@ properties: { name: [ 'John Doe', ], + note: [ + 'Nobody in particular', + ], photo: [ '/static/johndoe.jpg', ], @@ -250,6 +259,9 @@ { properties: { name: [ 'John Doe', + ], + note: [ + 'Nobody in particular', ], photo: [ '/static/johndoe.jpg',