fix(responders): replace <main> from layout
Alan Pearce alan@alanpearce.eu
Sun, 25 Jun 2017 13:08:36 +0200
1 files changed, 2 insertions(+), 2 deletions(-)
jump to
M src/responders.js → src/responders.js
@@ -53,7 +53,7 @@ ctx.type = 'html' ctx.body = templates .layout() .pipe(rheo()) - .inner('main', showPage('post')) + .outer('main', showPage('post')) .inner('article h1', rheo(post.data.get('title'))) .inner('article main', rheo(post.body)) .pipe(setTitle(config.site.title, post.data.get('title'))) @@ -65,7 +65,7 @@ ctx.type = 'html' ctx.body = templates .layout() .pipe(rheo()) - .inner('main', showPage('taxon')) + .outer('main', showPage('taxon')) .inner('h1', rheo(config.site.title)) .inner('.posts', function (postsTemplate) { return taxonItems.pipe(postsTemplate.map(renderPostListItem(ctx)))