Skip to content

Commit

Permalink
Merge pull request #51 from hmyuuu/orcid
Browse files Browse the repository at this point in the history
Add ORCID links with icons in the header
  • Loading branch information
DeveloperPaul123 authored Jul 30, 2024
2 parents 9d2dff3 + 9e65c85 commit f26afed
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
8 changes: 8 additions & 0 deletions lib.typ
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@
#let google-scholar-icon = box(
fa-icon("google-scholar", fill: color-darknight),
)
#let orcid-icon = box(
fa-icon("orcid", fill: color-darknight),
)
#let phone-icon = box(fa-icon("square-phone", fill: color-darknight))
#let email-icon = box(fa-icon("envelope", fill: color-darknight))
#let birth-icon = box(fa-icon("cake", fill: color-darknight))
Expand Down Expand Up @@ -344,6 +347,11 @@
#google-scholar-icon
#box[#link("https://scholar.google.com/citations?user=" + author.scholar)[#fullname]]
]
#if ("orcid" in author) [
#separator
#orcid-icon
#box[#link("https://orcid.org/" + author.orcid)[#author.orcid]]
]
]
]
]
Expand Down
1 change: 1 addition & 0 deletions template/resume.typ
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
github: "DeveloperPaul123",
twitter: "typstapp",
scholar: "",
orcid: "0000-0000-0000-000X",
birth: "January 1, 1990",
linkedin: "Example",
address: "111 Example St. Example City, EX 11111",
Expand Down

0 comments on commit f26afed

Please sign in to comment.