From 5779866696ed267d2914354b703ff9967685e94b Mon Sep 17 00:00:00 2001 From: Florin Dinu Date: Sun, 22 Jan 2023 05:03:36 +0200 Subject: [PATCH] Added certifications --- _data/data.yml | 40 ++++++++++++++++++++++++++++++++++ _includes/certifications.html | 41 +++++++++++++++++++++++++++++++++++ _sass/_base.scss | 13 +++++++---- index.html | 3 +++ 4 files changed, 93 insertions(+), 4 deletions(-) create mode 100644 _includes/certifications.html diff --git a/_data/data.yml b/_data/data.yml index c2b1d38..c4c1df1 100644 --- a/_data/data.yml +++ b/_data/data.yml @@ -127,6 +127,46 @@ experiences: pellentesque eu, pretium quis, sem. - Bullet point - Bullet point + +certifications: + title: Certifications + list: + - name: CV Builder + start: 2020 + end: 2021 + organization: Microsoft + credentialid: 111-222 + credentialurl: www.google.com + details: | + Details about cert. Lorem ipsum dolor sit amet, consectetur + adipiscing elit. + Nullam eget orci purus. Nullam ultrices neque nibh. + Aenean fermentum, felis vulputate suscipit accumsan, + sem enim bibendum augue, sed convallis arcu lacus at dui. + Pellentesque et nibh suscipit, vestibulum turpis eu, semper tortor. + Praesent felis nibh, eleifend id eleifend id, dictum id enim. + Praesent venenatis erat non augue suscipit consectetur. + + Second paragraph. Sed eleifend enim ante, vitae efficitur purus + fringilla vel. Ut euismod, sem sed vulputate venenatis, + justo diam viverra velit, sed rhoncus leo leo eu justo. + Suspendisse placerat risus ante, sed porta nisi blandit at. + - name: Git learning + start: 2019 + end: + organization: Microsoft + credentialid: 111-222 + credentialurl: www.github.com + details: | + Older certification. Lorem ipsum dolor sit amet, consectetur + adipiscing elit. + Nullam eget orci purus. Nullam ultrices neque nibh. + Aenean fermentum, felis vulputate suscipit accumsan, + sem enim bibendum augue, sed convallis arcu lacus at dui. + Pellentesque et nibh suscipit, vestibulum turpis eu, semper tortor. + Praesent felis nibh, eleifend id eleifend id, dictum id enim. + Praesent venenatis erat non augue suscipit consectetur. + projects: title: Projects intro: > diff --git a/_includes/certifications.html b/_includes/certifications.html new file mode 100644 index 0000000..9fa055d --- /dev/null +++ b/_includes/certifications.html @@ -0,0 +1,41 @@ +{% assign certifications = site.data.data.certifications %} {% if certifications %} +
+

+ + + + {{ certifications.title }} +

+ + {% for certifications in certifications.list %} +
+ +
+ +
+

{{ certifications.name }}

+
{{ certifications.start }} {% if certifications.end %} - {{ certifications.end }} {% endif %}
+
+ + +
+
{{ certifications.organization }} {% if certifications.credentialid %} ({{ certifications.credentialid }}) {% endif %}
+ {% if certifications.credentialurl %} + + {% endif %} +
+ +
+ + +
+ {{ certifications.details | markdownify }} +
+ +
+ + {% endfor %} + +
+ +{% endif %} diff --git a/_sass/_base.scss b/_sass/_base.scss index 870b3a4..4c38a97 100644 --- a/_sass/_base.scss +++ b/_sass/_base.scss @@ -182,27 +182,31 @@ p { margin-bottom: 30px; } } - .upper-row { + .upper-row, + .second-upper-row { position: relative; overflow: hidden; margin-bottom: 2px; } .job-title, - .degree { + .degree, + .cert-title{ color: $text-color; font-size: 16px; margin-top: 0; margin-bottom: 0; font-weight: 500; } - .time { + .time, + .cert-url { position: absolute; right: 0; top: 0; color: $text-grey; } .company, - .university { + .university, + .cert-org { margin-bottom: 10px; color: $text-grey; } @@ -276,3 +280,4 @@ p { color: $heart; } } + diff --git a/index.html b/index.html index 82cd1c4..27f5ba9 100644 --- a/index.html +++ b/index.html @@ -11,6 +11,8 @@ layout: default {% include experiences.html %} +{% include certifications.html %} + {% include projects.html %} {% include oss-contributions.html %} @@ -18,3 +20,4 @@ layout: default {% include publications.html %} {% include skills.html %} +