1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
diff --git a/links.jsonnet b/links.jsonnet
new file mode 100644
index 0000000000000000000000000000000000000000..2111fd9118471bfca6d45969a9b536c16350c035
--- /dev/null
+++ b/links.jsonnet
@@ -0,0 +1,17 @@
+local Link(name, url, icon=std.asciiLower(name)) = {
+ icon: icon,
+ name: name,
+ url: url,
+};
+
+{
+ links: [
+ Link('Git', 'https://git.jolheiser.com'),
+ Link('GitHub', 'https://github.com/jolheiser'),
+ Link('Gitea', 'https://gitea.com/jolheiser'),
+ Link('JoJoDev', 'https://git.jojodev.com/jolheiser', 'gitea'),
+ Link('Fediverse', 'https://social.jolheiser.com/@jolheiser', 'activitypub'),
+ Link('Bluesky', 'https://bsky.app/profile/jolheiser.com'),
+ Link('LinkedIn', 'https://linkedin.com/in/jolheiser'),
+ ],
+}
|