From 269247c871494ba4050a40900b073bc44db69aea Mon Sep 17 00:00:00 2001 From: martbost Date: Mon, 21 Sep 2026 05:56:21 -0500 Subject: [PATCH] Blog renderer: bump blog-page.js tag so articles load the viral-link bar now, not after the cache Co-Authored-By: Claude Fable 5.1 --- blog.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog.js b/blog.js index 8ab2fba..12941b7 100644 --- a/blog.js +++ b/blog.js @@ -108,7 +108,7 @@ function head(o) { + '
'; } function tail() { - return '
'; + return ''; } const authorBox = () => '
InstantAdPay
' + AUTHOR + 'Founder of InstantAdPay and the Crypto Team Build Network. Twenty-plus years of internet marketing, and a habit of writing down what actually worked.
'; const cardHtml = p => '' + (p.cover ? '' : '') + '

' + esc(p.title) + '

' + esc(p.excerpt) + '

' + fmtDate(p.publishedAt || p.created) + ' · ' + readMinutes(p.body) + ' min read' + (p.tags.length ? ' · ' + p.tags.map(esc).join(', ') : '') + '

';