21 lines
607 B
Nix
21 lines
607 B
Nix
_: {
|
|
template = "passthrough";
|
|
format = "html";
|
|
|
|
output = /*html*/''
|
|
<html lang="en">
|
|
<head>
|
|
<title>nix webring</title>
|
|
<link rel="icon" type="image/svg" href="/nix-webring.svg">
|
|
<link rel="stylesheet" href="/index.css">
|
|
<meta property="og:title" content="nix webring">
|
|
<meta property="og:image" content="https://jacekpoz.pl/nix-webring.svg">
|
|
<meta property="og:type" content="website">
|
|
<meta property="og:url" content="https://nixwebr.ing">
|
|
</head>
|
|
<body>
|
|
<p>work in progress</p>
|
|
</body>
|
|
</html>
|
|
'';
|
|
}
|