← back to Allnewsdaily
yoloforever C4a (Cody fix): cross-link About/Contact/Privacy/Guides in every guide+trust page nav+footer — trust pages no longer crawl-isolated
d413b5146ab794cab41c159e348e095d1053d289 · 2026-08-05 12:31:35 -0700 · Steve
Files touched
Diff
commit d413b5146ab794cab41c159e348e095d1053d289
Author: Steve <steve@designerwallcoverings.com>
Date: Wed Aug 5 12:31:35 2026 -0700
yoloforever C4a (Cody fix): cross-link About/Contact/Privacy/Guides in every guide+trust page nav+footer — trust pages no longer crawl-isolated
---
server.js | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/server.js b/server.js
index 6c92a12..7c66125 100644
--- a/server.js
+++ b/server.js
@@ -64,6 +64,7 @@ h1{font-size:30px;line-height:1.25;margin:8px 0 6px}h2{font-size:20px;margin:30p
.guide-cta{margin-top:30px;padding:16px 18px;background:#161b22;border:1px solid #21262d;border-radius:10px}
.related{margin-top:44px;border-top:1px solid #21262d;padding-top:20px}.related a{display:block;margin:8px 0}
footer{color:#6e7681;font-size:13px;border-top:1px solid #21262d;margin-top:40px;padding-top:16px}`;
+const guideFooterNav = `<div style="margin-top:8px"><a href="/" style="color:#6e7681;margin-right:12px">Directory</a><a href="/guides" style="color:#6e7681;margin-right:12px">Guides</a><a href="/about" style="color:#6e7681;margin-right:12px">About</a><a href="/contact" style="color:#6e7681;margin-right:12px">Contact</a><a href="/privacy" style="color:#6e7681">Privacy</a></div>`;
const guidePage = ({ title, desc, canonical, jsonld, inner }) => `<!doctype html><html lang="en"><head>
<meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1">
<title>${esc(title)} · All News Daily</title>
@@ -73,9 +74,9 @@ const guidePage = ({ title, desc, canonical, jsonld, inner }) => `<!doctype html
<meta property="og:description" content="${esc(desc)}"><meta property="og:site_name" content="All News Daily">
${jsonld ? `<script type="application/ld+json">${JSON.stringify(jsonld)}</script>` : ''}
<style>${GUIDE_CSS}</style>${ADSENSE}</head><body><div class="wrap">
-<div class="top"><a class="brand" href="/">All News Daily</a><a href="/guides">All guides</a></div>
+<div class="top"><a class="brand" href="/">All News Daily</a><span style="display:flex;gap:16px"><a href="/guides">Guides</a><a href="/about">About</a><a href="/contact">Contact</a><a href="/privacy">Privacy</a></span></div>
${inner}
-<footer>© ${new Date().getFullYear()} All News Daily — an independent global newsroom directory & news-literacy resource. Educational content only.</footer>
+<footer>${guideFooterNav}<div style="margin-top:8px">© ${new Date().getFullYear()} All News Daily — an independent global newsroom directory & news-literacy resource. Educational content only.</div></footer>
</div></body></html>`;
app.get('/guides', (_req, res) => {
← 661d70e yoloforever C2: add About/Contact/Privacy trust pages (AdSen
·
back to Allnewsdaily
·
yoloforever C5: strengthen About identity (editorial standar 5347f4a →