forked from Fediversity/fediversity.eu
23 lines
414 B
Nix
23 lines
414 B
Nix
|
let
|
||
|
grants = import ./grants.nix;
|
||
|
fediversity = import ./fediversity.nix;
|
||
|
in
|
||
|
{
|
||
|
title = "Fediversity";
|
||
|
description = "NGI Zero Fediversity";
|
||
|
outPath = "index.html";
|
||
|
body = ''
|
||
|
# Welcome to the Fediversity project
|
||
|
|
||
|
${fediversity.summary}
|
||
|
|
||
|
[Learn more about Fediversity](./${fediversity})
|
||
|
|
||
|
# Fediversity grants
|
||
|
|
||
|
${grants.summary}
|
||
|
|
||
|
[Learn more about our grants](./${grants})
|
||
|
'';
|
||
|
}
|