even even more news

main
Brett 2025-07-08 22:13:12 -04:00
parent e97ca2a41c
commit 8f069f17f4
3 changed files with 3 additions and 3 deletions

View File

@ -157,7 +157,7 @@
const [url, meta] = Object.entries(a)[0];
const link = document.createElement('a');
link.className = 'article-link';
link.href = '/view?url=' + encodeURIComponent(url);
link.href = '/news/view?url=' + encodeURIComponent(url);
const article = document.createElement('article');
const txt = meta.processed_text;

View File

@ -134,7 +134,7 @@
the whole card is a single coherent link */
const link = document.createElement('a');
link.className = 'article-link';
link.href = '/view?url=' + encodeURIComponent(url);
link.href = '/news/view?url=' + encodeURIComponent(url);
const card = document.createElement('article');
card.className = 'article-card';

View File

@ -199,7 +199,7 @@
const [url, meta] = Object.entries(a)[0];
const link = document.createElement('a');
link.className = 'article-link';
link.href = '/view?url=' + encodeURIComponent(url);
link.href = '/news/view?url=' + encodeURIComponent(url);
const article = document.createElement('article');
const txt = meta.processed_text;