From dd7d6516c64e286d392d5df66e39ca27436c084a Mon Sep 17 00:00:00 2001 From: Michael Clemens Date: Mon, 24 Oct 2022 12:38:32 +0200 Subject: [PATCH] added second experience page --- README.md | 1 + config.yaml | 12 +++++++----- data/experience.yaml | 21 +++++++++------------ data/experience2.yaml | 8 ++++++++ layouts/partials/section-experience2.html | 16 ++++++++++++++++ public | 2 +- 6 files changed, 42 insertions(+), 18 deletions(-) create mode 100644 data/experience2.yaml create mode 100644 layouts/partials/section-experience2.html diff --git a/README.md b/README.md index e69de29..c3036ad 100644 --- a/README.md +++ b/README.md @@ -0,0 +1 @@ +Source of my online resmue: https://clemens.name/resume diff --git a/config.yaml b/config.yaml index 19a6620..cb88998 100644 --- a/config.yaml +++ b/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' diff --git a/data/experience.yaml b/data/experience.yaml index 0977619..c364e62 100644 --- a/data/experience.yaml +++ b/data/experience.yaml @@ -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" - diff --git a/data/experience2.yaml b/data/experience2.yaml new file mode 100644 index 0000000..613fd4f --- /dev/null +++ b/data/experience2.yaml @@ -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" + diff --git a/layouts/partials/section-experience2.html b/layouts/partials/section-experience2.html new file mode 100644 index 0000000..24a160f --- /dev/null +++ b/layouts/partials/section-experience2.html @@ -0,0 +1,16 @@ +{{ range .Data.experience2 }} +
+

{{ .company }}

+ {{ range .roles }} +
+
+ {{ .role }} + {{ .date }} +
+ {{ if .details }} +

{{ .details | markdownify }}

+ {{ end }} +
+ {{ end }} +
+{{ end }} diff --git a/public b/public index d7615ae..07db83e 120000 --- a/public +++ b/public @@ -1 +1 @@ -/var/www/resume.clemens.name/ \ No newline at end of file +/var/www/qrz.is/resume \ No newline at end of file