42 lines
993 B
Text
42 lines
993 B
Text
---
|
|
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 IPython.core.display import Markdown
|
|
from IPython.display import display
|
|
|
|
from processing import yml
|
|
from processing import content
|
|
|
|
data=yml.parse("content.yml")
|
|
lang="de"
|
|
```
|
|
|
|
```{python}
|
|
display(Markdown(content.summary_to_md(data, headline="# Zusammenfassung", lang=lang)))
|
|
```
|
|
|
|
```{python}
|
|
display(Markdown(
|
|
content.experience_to_md(data, headline="# Berufserfahrung", lang=lang)))
|
|
```
|
|
|
|
```{python}
|
|
display(Markdown(content.education_to_md(data, headline="# Ausbildung", lang=lang)))
|
|
```
|
|
|
|
```{python}
|
|
display(Markdown(
|
|
content.qualifications_to_md(data, headline="# Qualifikationen", lang=lang)))
|
|
```
|