fediversity.eu/content/default.nix

51 lines
1 KiB
Nix
Raw Normal View History

2024-10-11 17:11:48 +02:00
{ config, ... }:
let
inherit (config) pages;
in
{
imports = [
./grants.nix
2024-10-11 18:13:15 +02:00
./fediversity.nix
2024-10-11 18:18:34 +02:00
./nlnet.nix
./nordunet.nix
./tweag.nix
./oid.nix
2024-10-11 17:11:48 +02:00
];
pages.index = {
title = "Fediversity";
locations = [
"index.html"
];
description = "Fediversity web site";
summary = ''
This web site hosts up-to-date information about the the NGI Zero Fediversity project.
'';
body = ''
# Welcome to the Fediversity project
2024-10-11 18:13:15 +02:00
${pages.fediversity.summary}
[Learn more about Fediversity](${pages.fediversity})
2024-10-11 17:11:48 +02:00
# Fediversity grants
${pages.grants.summary}
[Learn more about our grants](${pages.grants})
2024-10-11 18:18:34 +02:00
# Consortium
The Consortium behind the Fediversity project is a cooperation between NLnet, Open Internet Discourse Foundation, NORDUnet and Tweag.
${toString (map (partner: ''
## ${partner.title}
${partner.description}
[Read more about ${partner.title}](./${partner})
'') (with pages; [ nlnet oid tweag nordunet ]))}
2024-10-11 17:11:48 +02:00
'';
};
}