forked from Fediversity/Fediversity
30 lines
523 B
Nix
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})
|
|
'';
|
|
};
|
|
}
|