resume/resume_en.qmd

52 lines
1.1 KiB
Plaintext

---
title: Curriculum Vitae
subtitle: Marty Oehme
name: Marty Oehme
lang: en
left-column:
- "Email: [marty.oehme@gmail.com](mailto:marty.oehme@gmail.com)"
- "Mobile: +49 177 377 4949"
right-column:
- "Homepage: [http://martyoeh.me/](http://martyoeh.me/)"
- "GitHub: [https://github.com/marty-oehme/](https://github.com/marty-oehme/)"
- 'Last Updated: \today'
---
```{python}
from processing import yml, content
from IPython.display import Markdown
data = yml.parse("content.yml")
lang = "en"
```
```{python}
#| label: summary
display(Markdown(content.summary_to_md(data, headline="# Summary", lang=lang)))
```
```{python}
#| label: prof experience
display(
Markdown(
content.experience_to_md(
data,
headline="# Professional experience",
lang=lang,
)
)
)
```
```{python}
#| label: education
display(Markdown(content.education_to_md(data, headline="# Education", lang=lang)))
```
```{python}
#| label: qualifications
display(
Markdown(content.qualifications_to_md(data, headline="# Qualifications", lang=lang))
)
```