Fediversity/website/content/default.nix
2024-11-13 15:47:12 +01:00

30 lines
523 B
Nix

{ config, ... }:
let
inherit (config) pages;
in
{
imports = [
./grants.nix
];
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
# Fediversity grants
${pages.grants.summary}
[Learn more about our grants](${pages.grants})
'';
};
}