Modular, context-aware and aspect-oriented dendritic Nix configurations. Discussions: https://oeiuwq.zulipchat.com/join/nqp26cd4kngon6mo3ncgnuap/ den.oeiuwq.com
configurations den dendritic nix aspect oriented
8
fork

Configure Feed

Select the types of activity you want to include in your feed.

remove debug expr

+2 -2
+2 -2
docs/src/components/Versions.astro
··· 1 1 --- 2 - const versions = await fetch('https://den.oeiuwq.com/versions.json').then(r => r.ok ? r.json() : []).catch(e => []); 2 + const versions = await fetch('https://den.oeiuwq.com/versions.json').then(r => r.json()).catch(e => []); 3 3 --- 4 4 5 5 { 6 6 versions.length > 0 && <select id="versions"> 7 - <option value="/">main {versions.length}</option> 7 + <option value="/">main</option> 8 8 {versions.map(v => <option value={"/"+v.name.replace("docs-","")}>{v.name.replace("docs-","")}</option>)} 9 9 </select> 10 10 }