mirror of
https://github.com/ineesalmeida/almeida-cv.git
synced 2025-05-14 05:55:17 +00:00
Renamed all certificates to certifications
This commit is contained in:
parent
09d9001f67
commit
91b4e2c16b
4 changed files with 7 additions and 7 deletions
|
@ -1,4 +1,4 @@
|
|||
.certificates {
|
||||
.certifications {
|
||||
line-height: 2rem;
|
||||
|
||||
&__item {
|
|
@ -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";
|
||||
|
|
|
@ -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 }}
|
||||
|
|
|
@ -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 }}
|
Loading…
Add table
Add a link
Reference in a new issue