Renamed all certificates to certifications

This commit is contained in:
matthh9797 2023-02-06 11:26:06 +08:00
parent 09d9001f67
commit 91b4e2c16b
4 changed files with 7 additions and 7 deletions

View file

@ -1,4 +1,4 @@
.certificates {
.certifications {
line-height: 2rem;
&__item {

View file

@ -35,6 +35,6 @@ $pages: {{ .Site.Params.pages | default 1}} !default;
@import "components/languages";
@import "components/interests";
@import "components/404";
@import "components/certificates";
@import "components/certifications";
@import "custom";

View file

@ -24,7 +24,7 @@
{{ partial "_avatar.html" $data }}
{{ partial "_contacts.html" $data }}
{{ partial "_skills.html" $data }}
{{ partial "_certificates.html" $data }}
{{ partial "_certifications.html" $data }}
{{ partial "_languages.html" $data }}
{{ partial "_diplomas.html" $data }}
{{ partial "_interests.html" $data }}

View file

@ -1,12 +1,12 @@
{{ if .Certificates }}
{{ if .Certifications }}
<div class="sideSection">
<div class="sideSection__heading">
<h2 class="sideSection__title">Certifications</h2>
</div>
<div class="sideSection certificates">
<div class="sideSection certifications">
<ul>
{{ range .Certificates }}
<li class="certificates__item">
{{ range .Certifications }}
<li class="certifications__item">
<img src="{{ .Badge }}"> <span>{{ .Name | safeHTML }}</span>
</li>
{{ end }}