From befdf92ead7b739397d88e65298c888561d1645f Mon Sep 17 00:00:00 2001 From: Alex van de Sandt Date: Fri, 17 Jul 2026 22:33:34 -0500 Subject: [PATCH] Rearannge resume content --- justfile | 2 +- cv.typ => resume.typ | 5 ++--- {profile_en => resume_content}/education.typ | 0 {profile_en => resume_content}/metadata.toml | 0 {profile_en => resume_content}/professional.typ | 0 {profile_en => resume_content}/projects.typ | 0 {profile_en => resume_content}/skills.typ | 0 {profile_en => resume_content}/volunteering.typ | 0 8 files changed, 3 insertions(+), 4 deletions(-) rename cv.typ => resume.typ (78%) rename {profile_en => resume_content}/education.typ (100%) rename {profile_en => resume_content}/metadata.toml (100%) rename {profile_en => resume_content}/professional.typ (100%) rename {profile_en => resume_content}/projects.typ (100%) rename {profile_en => resume_content}/skills.typ (100%) rename {profile_en => resume_content}/volunteering.typ (100%) diff --git a/justfile b/justfile index b49136c..28f8822 100644 --- a/justfile +++ b/justfile @@ -1,4 +1,4 @@ -cv := "./cv.typ" +cv := "./resume.typ" cv_out := "./static/resume.pdf" typst-compile: diff --git a/cv.typ b/resume.typ similarity index 78% rename from cv.typ rename to resume.typ index 6320b40..25a874d 100644 --- a/cv.typ +++ b/resume.typ @@ -1,13 +1,12 @@ // Imports #import "@preview/brilliant-cv:4.0.1": cv -#let profile = sys.inputs.at("profile", default: "en") -#let metadata = toml("profile_" + profile + "/metadata.toml") +#let metadata = toml("resume_content/metadata.toml") #let import-modules(modules) = { for module in modules { include { - "profile_" + profile + "/" + module + ".typ" + "resume_content" + "/" + module + ".typ" } } } diff --git a/profile_en/education.typ b/resume_content/education.typ similarity index 100% rename from profile_en/education.typ rename to resume_content/education.typ diff --git a/profile_en/metadata.toml b/resume_content/metadata.toml similarity index 100% rename from profile_en/metadata.toml rename to resume_content/metadata.toml diff --git a/profile_en/professional.typ b/resume_content/professional.typ similarity index 100% rename from profile_en/professional.typ rename to resume_content/professional.typ diff --git a/profile_en/projects.typ b/resume_content/projects.typ similarity index 100% rename from profile_en/projects.typ rename to resume_content/projects.typ diff --git a/profile_en/skills.typ b/resume_content/skills.typ similarity index 100% rename from profile_en/skills.typ rename to resume_content/skills.typ diff --git a/profile_en/volunteering.typ b/resume_content/volunteering.typ similarity index 100% rename from profile_en/volunteering.typ rename to resume_content/volunteering.typ -- 2.51.2