diff options
Diffstat (limited to 'lib/serve.js')
-rw-r--r-- | lib/serve.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/serve.js b/lib/serve.js index 815c452..414a0bd 100644 --- a/lib/serve.js +++ b/lib/serve.js @@ -713,7 +713,7 @@ Serve.prototype.search = function (ext) { self.app.search(searchQ), self.renderThread(), self.wrapMessages(), - self.wrapPage('search · ' + searchQ, searchQ), + self.wrapPage('search - ' + searchQ, searchQ), self.respondSink(200, { 'Content-Type': ctype(ext), }) @@ -2403,7 +2403,7 @@ Serve.prototype.appendFooter = function () { return cat([read, u.readNext(function (cb) { var ms = new Date() - self.startDate cb(null, pull.once(h('footer', - h('a', {href: pkg.homepage}, pkg.name), ' · ', + h('a', {href: pkg.homepage}, pkg.name), ' - ', ms/1000 + 's' ).outerHTML)) })]) |