robertjohnson.work/_includes/certifications.html

49 lines
1.4 KiB
HTML
Raw Normal View History

2023-01-21 22:03:36 -05:00
{% assign certifications = site.data.data.certifications %} {% if certifications %}
<section class="section certifications-section">
2023-06-20 08:03:04 -04:00
<h2 class="section-title">
<span class="fa-stack fa-xs">
2023-01-21 22:03:36 -05:00
<i class="fas fa-circle fa-stack-2x"></i>
<i class="fas fa-graduation-cap fa-stack-1x fa-inverse"></i>
2023-06-20 08:03:04 -04:00
</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 %}
2023-01-21 22:03:36 -05:00
</div>
2023-06-20 08:03:04 -04:00
</div>
<!--//upper-row-->
2023-01-21 22:03:36 -05:00
2023-06-20 08:03:04 -04:00
<div class="second-upper-row">
<div class="cert-org">
{{ certifications.organization }} {% if certifications.credentialid %}
({{ certifications.credentialid }}) {% endif %}
2023-01-21 22:03:36 -05:00
</div>
2023-06-20 08:03:04 -04:00
{% if certifications.credentialurl %}
<div class="cert-url">
<a
href="//{{ certifications.credentialurl }}"
target="_blank"
rel="noreferrer nofollow noopener"
>{{ certifications.credentialname }}</a
>
</div>
{% endif %}
</div>
2023-01-21 22:03:36 -05:00
</div>
2023-06-20 08:03:04 -04:00
<!--//meta-->
2023-01-21 22:03:36 -05:00
2023-06-20 08:03:04 -04:00
<div class="details">{{ certifications.details | markdownify }}</div>
</div>
<!--//item-->
{% endfor %}
2023-01-21 22:03:36 -05:00
</section>
<!--//section-->
{% endif %}