Compare commits
2 commits
2025.05.18
...
main
Author | SHA1 | Date | |
---|---|---|---|
03da18cacd | |||
5fb17b3e06 |
4 changed files with 11 additions and 11 deletions
|
@ -50,7 +50,7 @@
|
|||
title: "The University of Texas at Dallas",
|
||||
degree: "Bachelor of Science in Computer Science",
|
||||
graduation: "Expected Graduation: December 2025",
|
||||
gpa: "Current GPA: 3.768",
|
||||
gpa: "Current GPA: 3.801",
|
||||
coursework: (
|
||||
completed: (
|
||||
"Programming Language Paradigms",
|
||||
|
@ -77,7 +77,7 @@
|
|||
),
|
||||
),
|
||||
),
|
||||
work_experience: (
|
||||
experience: (
|
||||
(
|
||||
title: "Scrumfish Software",
|
||||
location: "Nampa, ID",
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
highlights: (""),
|
||||
),
|
||||
),
|
||||
work_experience: (
|
||||
experience: (
|
||||
(
|
||||
title: "",
|
||||
location: "",
|
||||
|
@ -55,7 +55,7 @@
|
|||
page_resume_content(
|
||||
skills: skills,
|
||||
education: education,
|
||||
work_experience: work_experience,
|
||||
experience: experience,
|
||||
projects: projects,
|
||||
)
|
||||
)
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
highlights: (""),
|
||||
),
|
||||
),
|
||||
work_experience: (
|
||||
experience: (
|
||||
(
|
||||
title: "",
|
||||
location: "",
|
||||
|
@ -37,14 +37,14 @@
|
|||
) = {
|
||||
import "../../section/skills.typ": section_skills
|
||||
import "../../section/education.typ": section_education
|
||||
import "../../section/work_experience.typ": section_work_experience
|
||||
import "../../section/experience.typ": section_experience
|
||||
import "../../section/projects.typ": section_projects
|
||||
|
||||
grid(
|
||||
gutter: 1.1em,
|
||||
section_skills(skills: skills),
|
||||
section_education(education: education),
|
||||
section_work_experience(work_experience: work_experience),
|
||||
section_experience(experience: experience),
|
||||
section_projects(projects: projects),
|
||||
)
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#let section_work_experience(
|
||||
work_experience: (
|
||||
#let section_experience(
|
||||
experience: (
|
||||
(
|
||||
title: "",
|
||||
location: "",
|
||||
|
@ -13,8 +13,8 @@
|
|||
import "base/full.typ": section_base_full
|
||||
|
||||
section_base_full(
|
||||
title: "Work Experience",
|
||||
items: work_experience.map(company => (
|
||||
title: "Experience",
|
||||
items: experience.map(company => (
|
||||
title: company.role,
|
||||
timeframe: company.timeframe,
|
||||
role: company.title,
|
Loading…
Add table
Reference in a new issue