From 2f4fa929ccb77a86951cbb12721b5e654d8c2d23 Mon Sep 17 00:00:00 2001 From: Martin Contento <67421+tinnet@users.noreply.github.com> Date: Tue, 4 Jun 2024 21:04:13 -0400 Subject: [PATCH] add url to cvEntry --- template.typ | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/template.typ b/template.typ index beb123b..745324f 100644 --- a/template.typ +++ b/template.typ @@ -300,6 +300,7 @@ description: "Description", logo: "", tags: (), + url: "", ) = { let ifSocietyFirst(condition, field1, field2) = { return if condition { field1 } else { field2 } @@ -315,6 +316,9 @@ let setLogoContent(path) = { return if logo == "" [] else { image(path, width: 100%) } } + if url != "" { + society = link(url)[#society] + } v(beforeEntrySkip) table( columns: (ifLogo(logo, 4%, 0%), 1fr),