resume/resume_de.qmd

48 lines
1 KiB
Plaintext
Raw Normal View History

---
title: Lebenslauf
2023-06-27 16:00:58 +00:00
subtitle: Marty Oehme
name: Marty Oehme
2023-06-27 16:00:58 +00:00
lang: de
left-column:
2024-09-12 15:41:57 +00:00
- "Email: [marty.oehme@gmail.com](mailto:marty.oehme@gmail.com)"
- "Telefon: +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/)"
- 'Stand: \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 = "de"
```
```{python}
2024-09-12 15:41:57 +00:00
#| label: summary
display(Markdown(content.summary_to_md(data, headline="# Zusammenfassung", lang=lang)))
```
```{python}
2024-09-12 15:41:57 +00:00
#| label: prof experience
display(
Markdown(content.experience_to_md(data, headline="# Berufserfahrung", lang=lang))
)
```
```{python}
2024-09-12 15:41:57 +00:00
#| label: education
display(Markdown(content.education_to_md(data, headline="# Ausbildung", 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="# Qualifikationen", lang=lang)
)
)
2023-06-22 16:03:59 +00:00
```