← back to Textiletuesday
Add clean /privacy route (AdSense URL consistency)
6d7003a6bb054b2c146735a2de08029ac797b9bf · 2026-09-10 11:51:28 -0700 · Steve Abrams
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Files touched
Diff
commit 6d7003a6bb054b2c146735a2de08029ac797b9bf
Author: Steve Abrams <steve@designerwallcoverings.com>
Date: Thu Sep 10 11:51:28 2026 -0700
Add clean /privacy route (AdSense URL consistency)
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
---
server.js | 1 +
1 file changed, 1 insertion(+)
diff --git a/server.js b/server.js
index 7bce7d1..71db76b 100644
--- a/server.js
+++ b/server.js
@@ -20,6 +20,7 @@ app.use((req, res, next) => {
require('../_shared/_universal-promo-banner')(app, { slug: 'textiletuesday' });
app.use(express.static(path.join(__dirname, 'public')));
+app.get('/privacy', (req, res) => res.sendFile(path.join(__dirname, 'public', 'privacy.html')));
const products = JSON.parse(fs.readFileSync(path.join(__dirname, 'data/products.json'), 'utf8'));
← c56c743 Add privacy footer link (AdSense discoverability)
·
back to Textiletuesday
·
(newest)