summaryrefslogtreecommitdiff
path: root/content/basics.html.nix
diff options
context:
space:
mode:
authorQuentin Aristote <quentin@aristote.fr>2022-11-12 11:41:51 +0100
committerQuentin Aristote <quentin@aristote.fr>2022-11-12 11:41:51 +0100
commitdbf48a4665a66dd37150f3886026ecd9bd82967f (patch)
tree65bc5167f7c71952cf2ce4072197f6e23e81f98b /content/basics.html.nix
parent056ee77ab2ed3cf488ac9b1b8ac82664948a42a3 (diff)
restructure directories
Diffstat (limited to 'content/basics.html.nix')
-rw-r--r--content/basics.html.nix26
1 files changed, 0 insertions, 26 deletions
diff --git a/content/basics.html.nix b/content/basics.html.nix
deleted file mode 100644
index d7f7a90..0000000
--- a/content/basics.html.nix
+++ /dev/null
@@ -1,26 +0,0 @@
-{ html, data, ... }:
-
-let basics = data.basics;
-in {
- title = "About me";
- priority = 0;
- body = with html;
- with data.basics;
- lines [
- (div { class = "row"; } [
- (div { class = "col"; } [ (imgWith { src = avatar; }) ])
- (div { class = "col"; } (dl [
- (dt "${icon "las la-at"} e-mail")
- (dd (for email (email: "${mailto email.address} (${email.name}) ${br}")))
- (dt "${icon "las la-key"} keys")
- (dd (for keys.pgp (name: path: href path name)))
- (dt "${icon "las la-map-marker"} address")
- (dd (with location; ''
- ${number} ${street}${br}
- ${postalCode} ${city}
- ''))
- ]))
- ])
- description
- ];
-}