From 63ed960353c938ab44ec7841658e92c45ce29d13 Mon Sep 17 00:00:00 2001 From: ltadeu6 Date: Mon, 25 May 2026 18:08:26 -0300 Subject: [PATCH] Homepage: remove duplicate source link from project list --- hosts/NixOracle/site/index.html | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/hosts/NixOracle/site/index.html b/hosts/NixOracle/site/index.html index c17c4ab..c126411 100644 --- a/hosts/NixOracle/site/index.html +++ b/hosts/NixOracle/site/index.html @@ -54,11 +54,8 @@ } el.innerHTML = visible.map(r => { const desc = r.description ? ` โ€” ${r.description}` : ''; - const live = r.website ? `live ยท ` : ''; - return `

- ${r.name}${desc} -
${live}source -

`; + const live = r.website ? `
live` : ''; + return `

${r.name}${desc}${live}

`; }).join(''); } catch { el.innerHTML = '

โ€” could not load repositories โ€”

';