This repository has been archived on 2025-04-14. You can view files and clone it, but cannot push or open issues or pull requests.
website-old/content/news.nix
Kiara Grouwstra 54bf9da2a3
init
2025-04-14 11:20:58 +02:00

24 lines
493 B
Nix

{ config, lib, ... }:
{
pages.news =
{ link, ... }:
rec {
title = "News";
description = "News about Fediversity";
summary = description;
body =
with lib;
let
news = map (article: ''
## [${article.title}](${link article})
${article.date} by ${article.author}
${article.summary}
'') config.collections.news.entry;
in
''
${join "\n\n" news}
'';
};
}