resume/resume_en.qmd

52 lines
1.1 KiB
Plaintext
Raw Normal View History

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