-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcertifications.html
More file actions
44 lines (41 loc) · 1.55 KB
/
Copy pathcertifications.html
File metadata and controls
44 lines (41 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
---
title: Certifications
---
<!-- Page heading -->
<div class="container-fluid bg-dark fg-light page-heading mb-2 py-5">
<h1 class="text-center">Certifications</h1>
</div>
<!-- Certifications by section -->
{% for cert_type in site.data.certifications %}
<section class="container main-section text-center">
<h2 class="site-heading">{{ cert_type.title }}</h2>
<p class="site-subheading">{{ cert_type.subtitle }}</p>
{% assign certs = cert_type.certs | sort: "date" | reverse %}
{% for cert in certs %}
<div class="row row-cols-1">
<div class="col">
<p class="cert-title mb-0">
<a class="external-link text-decoration-none" href={{ cert.link }} target="_blank">
<span class="text-decoration-underline">{{ cert.name }}</span>
<i class="fa-solid fa-up-right-from-square"></i>
</a>
</p>
{% assign shortened_date = cert.date | date_to_long_string | split: " " | shift | join: " " %}
<p class="mb-0">Awarded by {{ cert.org }}</p>
<p class="mb-1 text-body-secondary"><small>{{ shortened_date }}</small></p>
</div>
</div>
<div class="row row-cols-1 mb-3">
<div class="col">
<ul class="list-unstyled mt-1">
{% for skill in cert.skills %}
<li class="badge bg-primary pill-rounded fw-normal">{{ skill }}</li>
{% endfor %}
</ul>
</div>
</div>
{% endfor %}
</section>
{% endfor %}
<!-- Placeholder for spacing -->
<div class="container-fluid my-3 py-3"></div>