Merge pull request #64 from DeveloperPaul123/feature/personal-website

This commit is contained in:
Paul T
2024-09-17 11:58:06 -04:00
committed by GitHub
4 changed files with 74 additions and 52 deletions

27
lib.typ
View File

@@ -28,6 +28,7 @@
#let email-icon = box(fa-icon("envelope", fill: color-darknight))
#let birth-icon = box(fa-icon("cake", fill: color-darknight))
#let homepage-icon = box(fa-icon("home", fill: color-darknight))
#let website-icon = box(fa-icon("globe", fill: color-darknight))
/// Helpers
@@ -217,7 +218,12 @@
set page(
paper: "a4",
margin: (left: 15mm, right: 15mm, top: 10mm, bottom: 10mm),
footer: if show-footer [#__resume_footer(author, language, lang_data, date)] else [],
footer: if show-footer [#__resume_footer(
author,
language,
lang_data,
date,
)] else [],
footer-descent: 0pt,
)
@@ -384,6 +390,11 @@
#orcid-icon
#box[#link("https://orcid.org/" + author.orcid)[#author.orcid]]
]
#if ("website" in author) [
#separator
#website-icon
#box[#link(author.website)[#author.website]]
]
]
]
]
@@ -534,7 +545,12 @@
set page(
paper: "a4",
margin: (left: 15mm, right: 15mm, top: 10mm, bottom: 10mm),
footer: if show-footer [#__coverletter_footer(author, language, date, lang_data)] else [],
footer: if show-footer [#__coverletter_footer(
author,
language,
date,
lang_data,
)] else [],
footer-descent: 0pt,
)
@@ -659,7 +675,12 @@
#separator
#orcid-icon
#box[#link("https://orcid.org/" + author.orcid)[#author.orcid]]
],
],
if ("website" in author) [
#separator
#website-icon
#box[#link(author.website)[#author.website]]
],
)
]
]

View File

@@ -1,4 +1,4 @@
#import "@preview/modern-cv:0.5.0": *
#import "@preview/modern-cv:0.7.0": *
#show: coverletter.with(
author: (
@@ -10,6 +10,7 @@
github: "DeveloperPaul123",
linkedin: "John Smith",
address: "111 Example St. Apt. 111, Example City, EX 11111",
website: "https://www.github.com/DeveloperPaul123",
positions: (
"Software Engineer",
"Full Stack Developer",

View File

@@ -1,4 +1,4 @@
#import "@preview/modern-cv:0.6.0": *
#import "@preview/modern-cv:0.7.0": *
#show: resume.with(
author: (

View File

@@ -1,6 +1,6 @@
[package]
name = "modern-cv"
version = "0.6.0"
version = "0.7.0"
compiler = "0.11.0"
entrypoint = "lib.typ"
authors = ["Paul Tsouchlos <https://github.com/DeveloperPaul123>"]