nixfiles/services/nginx/hosts/aleph/index.html.nix
Sebastian Walz 9f7b02e1cd
Tohu vaBohu
2023-04-03 14:38:02 +02:00

21 lines
347 B
Nix

{ web, ... }:
{ head, ... }:
let
inherit(web.html) HTML;
in
HTML { language = "eng"; }
{
inherit head;
body
= with web.html;
[
(
main
[
(h1 "Hello World")
(p "How are you doing?")
]
)
];
}