forked from robert/robertjohnson.work
commit
0352e2f279
@ -127,6 +127,48 @@ experiences:
|
|||||||
pellentesque eu, pretium quis, sem.
|
pellentesque eu, pretium quis, sem.
|
||||||
- Bullet point
|
- Bullet point
|
||||||
- Bullet point
|
- Bullet point
|
||||||
|
|
||||||
|
certifications:
|
||||||
|
title: Certifications
|
||||||
|
list:
|
||||||
|
- name: CV Builder
|
||||||
|
start: 2020
|
||||||
|
end: 2021
|
||||||
|
organization: Microsoft
|
||||||
|
credentialid: 111-222
|
||||||
|
credentialurl: www.google.com
|
||||||
|
credentialname: Google
|
||||||
|
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
|
||||||
|
credentialname: Github
|
||||||
|
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:
|
projects:
|
||||||
title: Projects
|
title: Projects
|
||||||
intro: >
|
intro: >
|
||||||
|
41
_includes/certifications.html
Normal file
41
_includes/certifications.html
Normal file
@ -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.credentialname }}</a></div>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<!--//meta-->
|
||||||
|
|
||||||
|
<div class="details">
|
||||||
|
{{ certifications.details | markdownify }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<!--//item-->
|
||||||
|
{% endfor %}
|
||||||
|
|
||||||
|
</section>
|
||||||
|
<!--//section-->
|
||||||
|
{% endif %}
|
@ -182,14 +182,16 @@ p {
|
|||||||
margin-bottom: 30px;
|
margin-bottom: 30px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.upper-row {
|
.upper-row,
|
||||||
|
.second-upper-row {
|
||||||
position: relative;
|
position: relative;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
margin-bottom: 2px;
|
margin-bottom: 2px;
|
||||||
display: flex;
|
display: flex;
|
||||||
}
|
}
|
||||||
.job-title,
|
.job-title,
|
||||||
.degree {
|
.degree,
|
||||||
|
.cert-title{
|
||||||
color: $text-color;
|
color: $text-color;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
@ -197,7 +199,8 @@ p {
|
|||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
flex: 75%;
|
flex: 75%;
|
||||||
}
|
}
|
||||||
.time {
|
.time,
|
||||||
|
.cert-url {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 0;
|
right: 0;
|
||||||
top: 0;
|
top: 0;
|
||||||
@ -205,7 +208,8 @@ p {
|
|||||||
flex: 25%;
|
flex: 25%;
|
||||||
}
|
}
|
||||||
.company,
|
.company,
|
||||||
.university {
|
.university,
|
||||||
|
.cert-org {
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
color: $text-grey;
|
color: $text-grey;
|
||||||
}
|
}
|
||||||
@ -279,3 +283,4 @@ p {
|
|||||||
color: $heart;
|
color: $heart;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -11,6 +11,8 @@ layout: default
|
|||||||
|
|
||||||
{% include experiences.html %}
|
{% include experiences.html %}
|
||||||
|
|
||||||
|
{% include certifications.html %}
|
||||||
|
|
||||||
{% include projects.html %}
|
{% include projects.html %}
|
||||||
|
|
||||||
{% include oss-contributions.html %}
|
{% include oss-contributions.html %}
|
||||||
@ -18,3 +20,4 @@ layout: default
|
|||||||
{% include publications.html %}
|
{% include publications.html %}
|
||||||
|
|
||||||
{% include skills.html %}
|
{% include skills.html %}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user