rename member.domain to member.site
All checks were successful
Deploy website / deploy (push) Successful in 13s

This commit is contained in:
jacekpoz 2024-09-16 13:53:47 +02:00
parent ae0ed7e363
commit fa691d7c59
Signed by: poz
SSH key fingerprint: SHA256:JyLeVWE4bF3tDnFeUpUaJsPsNlJyBldDGV/dIKSLyN8
2 changed files with 9 additions and 9 deletions

View file

@ -41,7 +41,7 @@ in {
in /*html*/'' in /*html*/''
<li> <li>
<div class="webring-member"> <div class="webring-member">
<a href="https://${member.domain}">${member.name}</a> <a href="https://${member.site}">${member.name}</a>
${optionalString hasConfig /*html*/'' ${optionalString hasConfig /*html*/''
<a href="https://${member.config}"><img class="config-image" src="/nix.svg" alt="their nixos config"></a> <a href="https://${member.config}"><img class="config-image" src="/nix.svg" alt="their nixos config"></a>
''} ''}
@ -68,7 +68,7 @@ in {
<p> <p>
and make a PR to one of <a href="https://codeberg.org/jacekpoz/nixwebr.ing">the</a> <a href="https://github.com/jacekpoz/nixwebr.ing">repos</a> adding yourself to the <code>webring.nix</code> file: and make a PR to one of <a href="https://codeberg.org/jacekpoz/nixwebr.ing">the</a> <a href="https://github.com/jacekpoz/nixwebr.ing">repos</a> adding yourself to the <code>webring.nix</code> file:
<br> <br>
<code>{ name = "name"; domain = "mysite.tld"; config = "gitforge.tld/name/nixos"; }</code> <code>{ name = "name"; site = "mysite.tld"; config = "gitforge.tld/name/nixos"; }</code>
<br> <br>
linking your nixos config is entirely optional! (you'll be way cooler though) linking your nixos config is entirely optional! (you'll be way cooler though)
</p> </p>

View file

@ -1,9 +1,9 @@
[ [
{ name = "poz"; domain = "jacekpoz.pl"; config = "flake.jacekpoz.pl"; } { name = "poz"; site = "jacekpoz.pl"; config = "flake.jacekpoz.pl"; }
{ name = "krizej"; domain = "krizej.codeberg.page"; config = "git.jacekpoz.pl/krizej/nix"; } { name = "krizej"; site = "krizej.codeberg.page"; config = "git.jacekpoz.pl/krizej/nix"; }
{ name = "partywumpus"; domain = "partywump.us"; config = "nix.partywump.us"; } { name = "partywumpus"; site = "partywump.us"; config = "nix.partywump.us"; }
{ name = "notashelf"; domain = "notashelf.dev"; config = "github.com/NotAShelf/nyx"; } { name = "notashelf"; site = "notashelf.dev"; config = "github.com/NotAShelf/nyx"; }
{ name = "twig"; domain = "imnottwig.github.io"; config = "git.disroot.org/twigthecat/nixos"; } { name = "twig"; site = "imnottwig.github.io"; config = "git.disroot.org/twigthecat/nixos"; }
{ name = "fufexan"; domain = "fufexan.net"; config = "dots.fufexan.net"; } { name = "fufexan"; site = "fufexan.net"; config = "dots.fufexan.net"; }
{ name = "orangc"; domain = "orangc.xyz"; config = "github.com/orxngc/dots"; } { name = "orangc"; site = "orangc.xyz"; config = "github.com/orxngc/dots"; }
] ]