-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathmain.typ
More file actions
211 lines (185 loc) · 5.16 KB
/
main.typ
File metadata and controls
211 lines (185 loc) · 5.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
#let configuration = yaml("configuration.yaml")
#let settings = yaml("settings.yaml")
#show link: set text(blue)
#set page(
paper: "a4",
margin: (
top: 1.5cm,
bottom: 1cm,
)
)
#show heading: h => [
#set text(
size: eval(settings.font.size.heading_large),
font: settings.font.general
)
#h
]
#let sidebarSection = {[
#set par(justify: true)
#set text(
size: eval(settings.font.size.contacts),
font: settings.font.minor_highlight,
)
Email: #link("mailto:" + configuration.contacts.email) \
Phone: #link("tel:" + configuration.contacts.phone) \
LinkedIn: #link(configuration.contacts.linkedin.url)[#configuration.contacts.linkedin.displayText] \
GitHub: #link(configuration.contacts.github.url)[#configuration.contacts.github.displayText] \
#configuration.contacts.address
#line(length: 100%)
= Summary
#set text(
eval(settings.font.size.education_description),
font: settings.font.minor_highlight,
)
#{
par(justify: true)[
#configuration.summary
]
}
Strong background in infrastructure, migration to cloud, and secure system design.
= Education
#{
for place in configuration.education [
#par(justify: false)[
#set text(
size: eval(settings.font.size.heading),
font: settings.font.general,
)
#{
if "to" in place and "from" in place [
#place.from
– #place.to \
] else if "arbitrary_interval" in place [
#place.arbitrary_interval
]
}
#link(place.place.link)[#place.place.name]
]
#par(justify: false)[
#set text(
eval(settings.font.size.education_description),
font: settings.font.minor_highlight,
)
#{
let description_items = ()
if "degree" in place and "major" in place [
#description_items.push([#place.degree~#place.major #place.track~track])
]
if "final_work" in place [
#if "link" in place.final_work [
#let thesis_link = place.final_work.link
#let thesis_url = thesis_link.at("url", default: none)
#let thesis_name = thesis_link.at("name", default: none)
// Format thesis text as link, if given. Otherwise, just the name.
#if thesis_url != none and thesis_name != none [
#description_items.push([*Thesis* #link(thesis_url)[#thesis_name]])
] else if thesis_name != none [
#description_items.push([*Thesis* #thesis_name])
]
]
]
if "location" in place [
#description_items.push([#place.location])
]
description_items.join(linebreak())
}
]
]
}
= Skills
#{
for skill in configuration.skills [
#par(justify: false)[
#set text(
size: eval(settings.font.size.description),
tracking: -0.01em,
)
#set text(
// size: eval(settings.font.size.tags),
font: settings.font.minor_highlight,
tracking: -0.01em,
)
*#skill.name*
#linebreak()
#skill.items.join(" • ")
]
]
}
]}
#let mainSection = {[
#par[
#set text(
size: eval(settings.font.size.heading_huge),
font: settings.font.general,
)
*#configuration.contacts.name*
]
#par[
#set text(
size: eval(settings.font.size.heading),
font: settings.font.minor_highlight,
top-edge: 0pt
)
#configuration.contacts.title
]
= Experience
#{
for job in configuration.jobs [
#set par(justify: false)
#set text(
size: eval(settings.font.size.heading),
font: settings.font.general
)
*#job.position*
#link(job.company.link)[\@ #job.company.name] \
#job.from – #job.to
#set text(
size: eval(settings.font.size.description),
font: settings.font.general
)
#list(..job.description)
#par(
justify: false,
leading: eval(settings.paragraph.leading),
)[
#set text(
size: eval(settings.font.size.tags),
font: settings.font.minor_highlight
)
#{
let tag_line = job.tags.join(" • ")
tag_line
}
]
]
}
= Certifications
#{
for certificate in configuration.certifications [
#set par(
justify: true,
leading: eval(settings.paragraph.leading)
)
#set text(
size: eval(settings.font.size.description),
font: settings.font.general
)
- #certificate.year #certificate.from – #certificate.to \
#link(certificate.venue.link)[#certificate.venue.name] – #link(certificate.certificate_link)[Credential]
#set text(
size: eval(settings.font.size.description),
font: settings.font.general
)
#certificate.description
]
}
]}
#{
grid(
columns: (2fr, 5fr),
column-gutter: 3em,
sidebarSection,
mainSection,
)
}