2024-11-13 15:24:41 +01:00
|
|
|
{ config, lib, ... }:
|
2024-11-13 15:24:40 +01:00
|
|
|
let
|
|
|
|
inherit (config) pages;
|
|
|
|
in
|
|
|
|
{
|
2024-11-13 15:24:41 +01:00
|
|
|
imports = with lib.fileset; toList (difference (fileFilter ({ hasExt, ... }: hasExt "nix") ./.) ./default.nix);
|
2024-11-13 15:24:40 +01: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-11-13 15:24:40 +01:00
|
|
|
${pages.fediversity.summary}
|
|
|
|
|
|
|
|
[Learn more about Fediversity](${pages.fediversity})
|
|
|
|
|
2024-11-13 15:24:40 +01:00
|
|
|
# Fediversity grants
|
|
|
|
|
|
|
|
${pages.grants.summary}
|
|
|
|
|
2024-11-13 15:24:41 +01:00
|
|
|
[Learn more about Fediversity grants](${pages.grants})
|
2024-11-13 15:24:40 +01: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}
|
|
|
|
|
2024-11-13 15:24:41 +01:00
|
|
|
[Read more about ${partner.title}](${partner})
|
2024-11-13 15:24:40 +01:00
|
|
|
'') (with pages; [ nlnet oid tweag nordunet ]))}
|
2024-11-13 15:24:41 +01:00
|
|
|
|
|
|
|
# News
|
|
|
|
|
2024-11-13 15:24:41 +01:00
|
|
|
${
|
|
|
|
let
|
|
|
|
sorted = with lib; reverseList (sortOn (entry: entry.date) config.collections.news.entry);
|
|
|
|
in
|
|
|
|
lib.join "\n" (map (article: ''
|
2024-11-13 15:24:41 +01:00
|
|
|
- ${article.date} [${article.title}](${article})
|
2024-11-13 15:24:41 +01:00
|
|
|
'') sorted)
|
|
|
|
}
|
2024-11-13 15:24:40 +01:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|