nte/example/index.nix
2024-05-22 21:55:06 +02:00

14 lines
317 B
Nix

_: {
template = "base";
file = "index.html";
head = /*html*/''
<title>nte example</title>
'';
body = /*html*/''
<h1>nte example site</h1>
<p>this site was written in nte</p>
<p>check the sources <a href="https://git.jacekpoz.pl/jacekpoz/nte/src/branch/master/example">here</a></p>
'';
}