summary refs log tree commit diff stats
path: root/src/responders.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/responders.js')
-rw-r--r--src/responders.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/responders.js b/src/responders.js
index acfcaf1..7671141 100644
--- a/src/responders.js
+++ b/src/responders.js
@@ -80,7 +80,7 @@ module.exports = {
         .inner(".posts", function(postsTemplate) {
           return postsStream.pipe(postsTemplate.map(renderPostListItem(ctx)));
         })
-        .pipe(setTitle(config.site.title))
+        .pipe(setTitle(config.site.author))
         .render()
     );
   },
@@ -94,7 +94,7 @@ module.exports = {
         .outer("main", showPage("post"))
         .inner("article h1", rheo(post.data.get("title")))
         .outer("article main", rheo(post.body))
-        .pipe(setTitle(config.site.title, post.data.get("title")))
+        .pipe(setTitle(config.site.author, post.data.get("title")))
         .render()
     );
   },
@@ -106,11 +106,11 @@ module.exports = {
         .layout()
         .pipe(rheo())
         .outer("main", showPage("taxon"))
-        .inner("h1", rheo(config.site.title))
+        .inner("h1", rheo(config.site.author))
         .inner(".posts", function(postsTemplate) {
           return taxonItems.pipe(postsTemplate.map(renderPostListItem(ctx)));
         })
-        .pipe(setTitle(config.site.title))
+        .pipe(setTitle(config.site.author))
         .render()
     );
   }