Index: src/routes/posts.js
===================================================================
--- src/routes/posts.js	(revision 297c77de57b09b006ce0c4b342071e244263cefb)
+++ src/routes/posts.js	(revision 0fa59c3afb76a2b269952782eabbe90d0be3309e)
@@ -85,5 +85,5 @@
   'tag', 'type', 'user', 'users', 'artiesten', 'leden', 'favorieten', 'feed.xml', 'atom.xml', 'sitemap.xml',
   'manifest.webmanifest', 'sw.js', 'favicon.ico', 'favicon.svg', 'assets',
-  'authorize_interaction', 'fediverse', 'timeline', 'following', 'notifications', 'blocking',
+  'authorize_interaction', 'fediverse', 'newspaper', 'following', 'notifications', 'blocking',
 ]);
 
@@ -597,9 +597,9 @@
 }
 
-router.get('/timeline', requireSiteManager, (req, res) => {
+router.get('/newspaper', requireSiteManager, (req, res) => {
   const site = res.locals.site;
   const timeline = (site ? ActivityPubService.getTimeline(site.slug, 60) : [])
     .map((p) => ({ ...p, embedHtml: timelineEmbedHtml(p.content) }));
-  renderPage(req, res, 'pages/timeline', {
+  renderPage(req, res, 'pages/newspaper', {
     pageTitle: 'Tijdlijn', bodyClass: 'on-special',
     timeline,
@@ -619,5 +619,5 @@
 });
 
-router.post('/timeline/follow', requireSiteManager, async (req, res) => {
+router.post('/newspaper/follow', requireSiteManager, async (req, res) => {
   const site = res.locals.site;
   const handle = (req.body.handle || '').toString();
@@ -635,5 +635,5 @@
 });
 
-router.post('/timeline/unfollow', requireSiteManager, async (req, res) => {
+router.post('/newspaper/unfollow', requireSiteManager, async (req, res) => {
   const site = res.locals.site;
   const actorUri = (req.body.actor_uri || '').toString();
@@ -643,5 +643,5 @@
 
 // Toggle "Featured" (show this account's posts in your Cirkel) on an account you follow.
-router.post('/timeline/autoboost', requireSiteManager, (req, res) => {
+router.post('/newspaper/autoboost', requireSiteManager, (req, res) => {
   const site = res.locals.site;
   const actorUri = (req.body.actor_uri || '').toString();
@@ -650,11 +650,11 @@
 });
 
-router.post('/timeline/like', requireSiteManager, async (req, res) => {
+router.post('/newspaper/like', requireSiteManager, async (req, res) => {
   const site = res.locals.site;
   if (site) { try { await ActivityPubService.sendInteraction(site, 'like', (req.body.note || '').toString(), (req.body.author || '').toString()); } catch (e) { /* ignore */ } }
-  res.redirect('/timeline?success=' + encodeURIComponent('Geliket ⭐'));
-});
-
-router.post('/timeline/boost', requireSiteManager, async (req, res) => {
+  res.redirect('/newspaper?success=' + encodeURIComponent('Geliket ⭐'));
+});
+
+router.post('/newspaper/boost', requireSiteManager, async (req, res) => {
   const site = res.locals.site;
   const note = (req.body.note || '').toString();
@@ -663,9 +663,9 @@
     ActivityPubService.markBoosted(site.slug, note); // also surface it in the Cirkel (mixed by date)
   }
-  res.redirect('/timeline?success=' + encodeURIComponent('Geboost 🔁'));
+  res.redirect('/newspaper?success=' + encodeURIComponent('Geboost 🔁'));
 });
 
 // Unboost (retract): send Undo(Announce) + clear the local flag.
-router.post('/timeline/unboost', requireSiteManager, async (req, res) => {
+router.post('/newspaper/unboost', requireSiteManager, async (req, res) => {
   const site = res.locals.site;
   const note = (req.body.note || '').toString();
@@ -674,5 +674,5 @@
     ActivityPubService.unmarkBoosted(site.slug, note);
   }
-  res.redirect('/timeline?success=' + encodeURIComponent('Boost ingetrokken'));
+  res.redirect('/newspaper?success=' + encodeURIComponent('Boost ingetrokken'));
 });
 
@@ -705,5 +705,5 @@
   }
   const ref = req.get('Referer') || '';
-  res.redirect((ref.includes('/timeline') ? '/timeline?' : '/blocking?') + q);
+  res.redirect((ref.includes('/newspaper') ? '/newspaper?' : '/blocking?') + q);
 });
 
