Updated CV
continuous-integration/drone/push Build is passing Details

Signed-off-by: Jim Martens <github@2martens.de>
This commit is contained in:
Jim Martens 2020-07-04 17:58:33 +02:00
parent 38c7a9d905
commit 0a634e2fcf
2 changed files with 45 additions and 3 deletions

View File

@ -42,20 +42,21 @@ skills:
- category: Programming languages - category: Programming languages
items: items:
- Python - Python
- PHP
- JavaScript
- Java - Java
- TypeScript
- JavaScript
- PHP
- C++ - C++
- category: Markup languages - category: Markup languages
items: items:
- HTML - HTML
- Markdown - Markdown
- JSON
- CSS - CSS
- SQL - SQL
- XML - XML
- YAML - YAML
- reStructuredText - reStructuredText
- JSON
- category: CMS - category: CMS
items: items:
- Typo3 - Typo3
@ -63,6 +64,7 @@ skills:
- category: VCS - category: VCS
items: items:
- Git - Git
- SVN
- category: OS - category: OS
items: items:
- Windows - Windows
@ -76,9 +78,16 @@ skills:
- Jenkins - Jenkins
- TeamCity - TeamCity
- MS Project - MS Project
jobs:
- title: IT consultant
start: 2019-11-01
company: Hamburger Berater Team GmbH
icon: fa-building
education: education:
- title: Master of Science in Computer Science - title: Master of Science in Computer Science
start: 2016-10-01 start: 2016-10-01
end: 2020-03-31
grade: 2.39
icon: fa-university icon: fa-university
- title: Bachelor of Science in Computer Science - title: Bachelor of Science in Computer Science
start: 2012-10-01 start: 2012-10-01

View File

@ -32,6 +32,39 @@ description: On this page you can find my curriculum vitae.
{% endif %} {% endif %}
{% if site.data.author.jobs %}
<h2>Experience</h2>
<ul class="list-unstyled">
{% for item in site.data.author.jobs %}
<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 %}
{% if item.company %}
<li><span class="font-weight-bold">Company:</span> {{ item.company }}</li>
{% endif %}
</ul>
</div>
</li>
{% endfor %}
</ul>
{% endif %}
{% if site.data.author.education %} {% if site.data.author.education %}
<h2>Education</h2> <h2>Education</h2>
<ul class="list-unstyled"> <ul class="list-unstyled">