resume/resume_de.qmd

48 lines
1 KiB
Plaintext

---
title: Lebenslauf
subtitle: Marty Oehme
name: Marty Oehme
lang: de
left-column:
- "Email: [marty.oehme@gmail.com](mailto:marty.oehme@gmail.com)"
- "Telefon: +49 177 377 4949"
right-column:
- "Homepage: [http://martyoeh.me/](http://martyoeh.me/)"
- "GitHub: [https://github.com/marty-oehme/](https://github.com/marty-oehme/)"
- 'Stand: \today'
---
```{python}
from processing import yml, content
from IPython.display import Markdown
data = yml.parse("content.yml")
lang = "de"
```
```{python}
#| label: summary
display(Markdown(content.summary_to_md(data, headline="# Zusammenfassung", lang=lang)))
```
```{python}
#| label: prof experience
display(
Markdown(content.experience_to_md(data, headline="# Berufserfahrung", lang=lang))
)
```
```{python}
#| label: education
display(Markdown(content.education_to_md(data, headline="# Ausbildung", lang=lang)))
```
```{python}
#| label: qualifications
display(
Markdown(
content.qualifications_to_md(data, headline="# Qualifikationen", lang=lang)
)
)
```