added second experience page
This commit is contained in:
parent
7dacc41904
commit
dd7d6516c6
12
config.yaml
12
config.yaml
|
@ -69,11 +69,13 @@ params:
|
|||
# title: About Me
|
||||
- feature: experience
|
||||
- features:
|
||||
- feature: experience2
|
||||
title: Experience (continued)
|
||||
- feature: projects
|
||||
collection: projects
|
||||
- feature: publications
|
||||
title: Publications / Mentions
|
||||
style: IEEE # IEEE, APA, else
|
||||
#- feature: publications
|
||||
# title: Publications / Mentions
|
||||
# style: IEEE # IEEE, APA, else
|
||||
#- feature: awards
|
||||
#- feature: certificates
|
||||
# title: Certifications
|
||||
|
@ -96,5 +98,5 @@ params:
|
|||
# url: 'https://qrz.is'
|
||||
# icon: fas fa-globe
|
||||
- prefix:
|
||||
title: Impress
|
||||
url: 'https://qrz.is/impressum'
|
||||
title: Datenschutzerklärung
|
||||
url: 'https://qrz.is/privacy'
|
||||
|
|
|
@ -1,14 +1,19 @@
|
|||
- company: zooplus SE, Munich
|
||||
roles:
|
||||
- role: Senior Information Security Engineer
|
||||
details: "- Incident handling and analysis\n
|
||||
- IT-Security Consulting"
|
||||
date: "07/2022 - Present"
|
||||
- company: Schwarz IT KG, Neckarsulm
|
||||
roles:
|
||||
- role: Information Security Analyst (SOC)
|
||||
details: "- Incident handling and analysis in the Schwarz IT Cyber Defense Center\n
|
||||
- Threat Intelligence Management"
|
||||
date: "09/2020 - Present"
|
||||
date: "09/2020 - 06/2022"
|
||||
|
||||
- role: Information Security Engineer
|
||||
details: "- Developed and operated the Qualys vulnerability scanner\n
|
||||
- Supported other departments with information security-related issues\n
|
||||
- Supported the Information Security Officers with technical issues\n
|
||||
- Supported ISOs and teams with security-related technical issues\n
|
||||
- Developed hardening guidelines for operating systems"
|
||||
date: "09/2018 - 08/2020"
|
||||
|
||||
|
@ -21,7 +26,7 @@
|
|||
date: "01/2017 - 08/2018"
|
||||
|
||||
- company: Bürkert Werke GmbH, Ingelfingen
|
||||
roles:
|
||||
roles:
|
||||
- role: Senior Information Security Administrator
|
||||
details: "- Conceptualized an information security awareness campaign\n
|
||||
- Evaluated new IT security guidelines, measures and products\n
|
||||
|
@ -38,11 +43,3 @@
|
|||
- Developed and conducted security trainings for our customers"
|
||||
date: "03/2011 - 12/2015"
|
||||
|
||||
- company: dsb AG, Neckarsulm
|
||||
roles:
|
||||
- role: System and Database Administrator
|
||||
details: "- System administrator for IBM AIX\n
|
||||
- Database administrator for ADABAS C and DB2\n
|
||||
- Backup administrator for Tivoli Storage Manager"
|
||||
date: "11/2004 - 02/2011"
|
||||
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
- company: dsb AG, Neckarsulm
|
||||
roles:
|
||||
- role: System and Database Administrator
|
||||
details: "- System administrator for IBM AIX\n
|
||||
- Database administrator for ADABAS C and DB2\n
|
||||
- Backup administrator for Tivoli Storage Manager"
|
||||
date: "11/2004 - 02/2011"
|
||||
|
|
@ -0,0 +1,16 @@
|
|||
{{ range .Data.experience2 }}
|
||||
<div class="item group">
|
||||
<h2 class="item-title">{{ .company }}</h2>
|
||||
{{ range .roles }}
|
||||
<div class="item">
|
||||
<div class="flex-row">
|
||||
<span class="job-title">{{ .role }}</span>
|
||||
<span class="date">{{ .date }}</span>
|
||||
</div>
|
||||
{{ if .details }}
|
||||
<p>{{ .details | markdownify }}</p>
|
||||
{{ end }}
|
||||
</div>
|
||||
{{ end }}
|
||||
</div>
|
||||
{{ end }}
|
Loading…
Reference in New Issue