Home

jolheiser.com @82a84f0c62b0a1dddf9e7e7e464680a002439dcb - refs - log -
-
https://git.jolheiser.com/jolheiser.com.git
my website
jolheiser.com / links.jsonnet
- raw -
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
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'),
  ],
}