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

View File

@ -32,6 +32,39 @@ description: On this page you can find my curriculum vitae.
{% 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 %}
<h2>Education</h2>
<ul class="list-unstyled">