@ -3,6 +3,55 @@ image: /assets/images/jim.jpg
|
||||
image_desc:
|
||||
age: 23
|
||||
location: Hamburg, Germany
|
||||
cv_link: /cv
|
||||
cv_link: /cv/
|
||||
github_username: 2martens
|
||||
twitter_username: 2martens
|
||||
skills:
|
||||
- category: Programming languages
|
||||
items:
|
||||
- Python
|
||||
- PHP
|
||||
- JavaScript
|
||||
- Java
|
||||
- C++
|
||||
- category: Markup languages
|
||||
items:
|
||||
- HTML
|
||||
- Markdown
|
||||
- XML
|
||||
- YAML
|
||||
- reStructuredText
|
||||
- JSON
|
||||
- category: CMS
|
||||
items:
|
||||
- Typo3
|
||||
- Wordpress
|
||||
- category: Software
|
||||
items:
|
||||
- LibreOffice
|
||||
- MS Office
|
||||
- OpenProject
|
||||
- InDesign
|
||||
- Jenkins
|
||||
- TeamCity
|
||||
- MS Project
|
||||
education:
|
||||
- title: Master of Science in Computer Science
|
||||
start: 2016-10-01
|
||||
icon: fa-university
|
||||
- title: Bachelor of Science in Computer Science
|
||||
start: 2012-10-01
|
||||
end: 2016-09-30
|
||||
icon: fa-graduation-cap
|
||||
politics:
|
||||
- title: Member of the board of Green Youth Hamburg<br>Beisitzer im Landesvorstand der GRÜNEN JUGEND Hamburg
|
||||
start: 2016-10-15
|
||||
end: 2017-09-30
|
||||
icon: fa-user
|
||||
- title: Member of the Presidium of the Student Parliament at the University Hamburg<br>Mitglied im Präsidium des Studierendenparlaments der Uni Hamburg
|
||||
start: 2016-04-14
|
||||
end: 2017-04-20
|
||||
icon: fa-users
|
||||
- title: Member of the Student Parliament at the University Hamburg<br>Mitglied des Studierendenparlaments der Uni Hamburg
|
||||
start: 2015-04-09
|
||||
icon: fa-users
|
||||
@ -1,4 +1,6 @@
|
||||
items:
|
||||
- link: /cv/
|
||||
title: CV
|
||||
- link: /speeches/
|
||||
title: Speeches
|
||||
- link: /politics/
|
||||
|
||||
92
pages/cv.html
Normal file
92
pages/cv.html
Normal file
@ -0,0 +1,92 @@
|
||||
---
|
||||
title: Curriculum Vitae
|
||||
permalink: /cv/
|
||||
sidebarboxes: job_offers
|
||||
---
|
||||
|
||||
{% if site.data.author.image %}
|
||||
<aside class="float-right">
|
||||
<div class="card sidebar mb-3">
|
||||
<img class="card-img-top" src="{{ site.data.author.image }}" alt="Image of {{ site.data.author.name }}">
|
||||
</div>
|
||||
</aside>
|
||||
{% endif %}
|
||||
|
||||
<h2>Personal Data</h2>
|
||||
|
||||
<ul class="list-unstyled">
|
||||
<li><span class="font-weight-bold">Name:</span> {{ site.data.author.name }}</li>
|
||||
<li><span class="font-weight-bold">Age:</span> {{ site.data.author.age }}</li>
|
||||
<li><span class="font-weight-bold">Location:</span> {{ site.data.author.location }}</li>
|
||||
</ul>
|
||||
|
||||
{% if site.data.author.skills %}
|
||||
<h2>Skills</h2>
|
||||
|
||||
<ul class="list-unstyled">
|
||||
{% for item in site.data.author.skills %}
|
||||
<li><span class="font-weight-bold">{{ item.category }}:</span> {{ item.items | join:', ' }} </li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
||||
{% endif %}
|
||||
|
||||
{% if site.data.author.education %}
|
||||
<h2>Education</h2>
|
||||
<ul class="list-unstyled">
|
||||
{% for item in site.data.author.education %}
|
||||
<li class="media mb-2">
|
||||
<span class="align-self-center mr-3 far {{ item.icon }} fa-fw fa-2x"></span>
|
||||
<div class="media-body">
|
||||
<h5 class="mt-0">{{ item.title }}</h5>
|
||||
<ul class="list-unstyled">
|
||||
{% if item.start %}
|
||||
<li><span class="font-weight-bold">Start:</span>
|
||||
<time datetime="{{ item.start | date_to_xmlschema }}">
|
||||
{{ item.start | date: "%b %-d, %Y" }}
|
||||
</time>
|
||||
</li>
|
||||
{% endif %}
|
||||
{% if item.end %}
|
||||
<li><span class="font-weight-bold">End:</span>
|
||||
<time datetime="{{ item.end | date_to_xmlschema }}">
|
||||
{{ item.end | date: "%b %-d, %Y" }}
|
||||
</time>
|
||||
</li>
|
||||
{% endif %}
|
||||
</ul>
|
||||
</div>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endif}
|
||||
|
||||
{% if site.data.author.politics %}
|
||||
<h2>Politics</h2>
|
||||
|
||||
<ul class="list-unstyled">
|
||||
{% for item in site.data.author.politics %}
|
||||
<li class="media mb-2">
|
||||
<span class="align-self-center mr-3 far {{ item.icon }} fa-fw fa-2x"></span>
|
||||
<div class="media-body">
|
||||
<h5 class="mt-0">{{ item.title }}</h5>
|
||||
<ul class="list-unstyled">
|
||||
{% if item.start %}
|
||||
<li><span class="font-weight-bold">Start:</span>
|
||||
<time datetime="{{ item.start | date_to_xmlschema }}">
|
||||
{{ item.start | date: "%b %-d, %Y" }}
|
||||
</time>
|
||||
</li>
|
||||
{% endif %}
|
||||
{% if item.end %}
|
||||
<li><span class="font-weight-bold">End:</span>
|
||||
<time datetime="{{ item.end | date_to_xmlschema }}">
|
||||
{{ item.end | date: "%b %-d, %Y" }}
|
||||
</time>
|
||||
</li>
|
||||
{% endif %}
|
||||
</ul>
|
||||
</div>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
Reference in New Issue
Block a user