From 17b9cc7862fb9a2ab747cd9728b1556594eb5235 Mon Sep 17 00:00:00 2001 From: Thiago Franco de Moraes Date: Mon, 17 Feb 2025 17:04:17 -0300 Subject: [PATCH] Added gitlab and bitbucket --- lib.typ | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/lib.typ b/lib.typ index 39745fa..2942d8f 100644 --- a/lib.typ +++ b/lib.typ @@ -15,6 +15,12 @@ #let github-icon = box( fa-icon("github", fill: color-darknight), ) +#let gitlab-icon = box( + fa-icon("gitlab", fill: color-darknight), +) +#let bitbucket-icon = box( + fa-icon("bitbucket", fill: color-darknight), +) #let twitter-icon = box( fa-icon("twitter", fill: color-darknight), ) @@ -370,6 +376,16 @@ #github-icon #box[#link("https://github.com/" + author.github)[#author.github]] ] + #if ("gitlab" in author) [ + #separator + #gitlab-icon + #box[#link("https://gitlab.com/" + author.gitlab)[#author.gitlab]] + ] + #if ("bitbucket" in author) [ + #separator + #bitbucket-icon + #box[#link("https://bitbucket.org/" + author.bitbucket)[#author.bitbucket]] + ] #if ("linkedin" in author) [ #separator #linkedin-icon