41 lines
971 B
Text
41 lines
971 B
Text
---
|
|
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 IPython.display import display, Markdown
|
|
|
|
from processing import yml
|
|
from processing import content
|
|
|
|
data=yml.parse("content.yml")
|
|
lang="en"
|
|
```
|
|
|
|
```{python}
|
|
display(Markdown(content.summary_to_md(data, headline="# Summary", lang=lang)))
|
|
```
|
|
|
|
```{python}
|
|
display(Markdown(
|
|
content.experience_to_md(data, headline="# Professional experience", lang=lang)))
|
|
```
|
|
|
|
```{python}
|
|
display(Markdown(content.education_to_md(data, headline="# Education", lang=lang)))
|
|
```
|
|
|
|
```{python}
|
|
display(Markdown(
|
|
content.qualifications_to_md(data, headline="# Qualifications", lang=lang)))
|
|
```
|