fix: add page title to header
Alan Pearce alan@alanpearce.eu
Fri, 30 Jun 2017 20:35:51 +0200
2 files changed, 5 insertions(+), 1 deletions(-)
M src/responders.js → src/responders.js
@@ -42,7 +42,10 @@ function setTitle(siteTitle, pageTitle) { return rheo.template(function(s) { return s - .inner("title", rheo((pageTitle ? " · " : "") + siteTitle)) + .inner( + "title", + rheo(pageTitle ? `${pageTitle} · ${siteTitle}` : siteTitle) + ) .inner("body header h1", rheo(siteTitle)); }); }
M test/app.test.js → test/app.test.js
@@ -34,6 +34,7 @@ .expect(200) .expect(/^<!DOCTYPE html>/) .then(parseResponse) .then($ => { + t.is($("head > title").text(), "This is a test · " + config.site.title); t.is($("article h1").text(), "This is a test"); t.is( $("article p").text(),