Skip to content

Commit

Permalink
Added certifications
Browse files Browse the repository at this point in the history
  • Loading branch information
fredtux committed Jan 22, 2023
1 parent 78bb1e6 commit 5779866
Show file tree
Hide file tree
Showing 4 changed files with 93 additions and 4 deletions.
40 changes: 40 additions & 0 deletions _data/data.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: >
Expand Down
41 changes: 41 additions & 0 deletions _includes/certifications.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{% assign certifications = site.data.data.certifications %} {% if certifications %}
<section class="section certifications-section">
<h2 class="section-title">
<span class="fa-stack fa-xs">
<i class="fas fa-circle fa-stack-2x"></i>
<i class="fas fa-graduation-cap fa-stack-1x fa-inverse"></i>
</span> {{ certifications.title }}
</h2>

{% for certifications in certifications.list %}
<div class="item">

<div class="meta">

<div class="upper-row">
<h3 class="cert-title">{{ certifications.name }}</h3>
<div class="time">{{ certifications.start }} {% if certifications.end %} - {{ certifications.end }} {% endif %}</div>
</div>
<!--//upper-row-->

<div class="second-upper-row">
<div class="cert-org">{{ certifications.organization }} {% if certifications.credentialid %} ({{ certifications.credentialid }}) {% endif %}</div>
{% if certifications.credentialurl %}
<div class="cert-url"><a href="//{{ certifications.credentialurl }}" target="_blank">{{ certifications.credentialurl }}</a></div>
{% endif %}
</div>

</div>
<!--//meta-->

<div class="details">
{{ certifications.details | markdownify }}
</div>

</div>
<!--//item-->
{% endfor %}

</section>
<!--//section-->
{% endif %}
13 changes: 9 additions & 4 deletions _sass/_base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down Expand Up @@ -276,3 +280,4 @@ p {
color: $heart;
}
}

3 changes: 3 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,13 @@

{% include experiences.html %}

{% include certifications.html %}

{% include projects.html %}

{% include oss-contributions.html %}

{% include publications.html %}

{% include skills.html %}

0 comments on commit 5779866

Please sign in to comment.