CV/cv.typ

25 lines
447 B
Typst

// Imports
#import "@preview/brilliant-cv:3.1.2": cv
#let metadata = toml("./metadata.toml")
#let importModules(modules, lang: metadata.language) = {
for module in modules {
include {
lang + "/" + module + ".typ"
}
v(5pt)
}
}
#show: cv.with(metadata, profile-photo: image("./src/avatar.jpg"))
// #set text(size: 9pt)
#importModules((
"education",
"skills",
"career",
"projects",
"activity",
"achievements",
))