Skip to content

Commit e8feb32

Browse files
Move certifications higher
1 parent d3f1f02 commit e8feb32

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

src/resume.htmls

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,21 @@ html {lang: $lang, dir: $dir} ->
155155
ul ->
156156
for let course in education.courses
157157
li course
158+
if @resume.certificates?.length > 0
159+
article {id: \certificates} ->
160+
$title \Certifications \check-badge
161+
for let certificate in @resume.certificates
162+
section {class: \certificate} ->
163+
div ->
164+
strong ->
165+
if certificate.url
166+
a {href: certificate.url} certificate.name
167+
else
168+
span certificate.name
169+
div {class: \sep} ->
170+
b certificate.issuer
171+
time {datetime: certificate.date} do
172+
@lib.format certificate.date, $lang, month: \short
158173
if @resume.volunteer?.length > 0
159174
article {id: \volunteer} ->
160175
$title 'Volunteer Work' \lifebuoy
@@ -211,21 +226,6 @@ html {lang: $lang, dir: $dir} ->
211226
time {datetime: publication.release-date} do
212227
@lib.format publication.release-date, $lang, month: \short
213228
p {class: \wrap} publication.summary if publication.summary
214-
if @resume.certificates?.length > 0
215-
article {id: \certificates} ->
216-
$title \Certifications \check-badge
217-
for let certificate in @resume.certificates
218-
section {class: \certificate} ->
219-
div ->
220-
strong ->
221-
if certificate.url
222-
a {href: certificate.url} certificate.name
223-
else
224-
span certificate.name
225-
div {class: \sep} ->
226-
b certificate.issuer
227-
time {datetime: certificate.date} do
228-
@lib.format certificate.date, $lang, month: \short
229229
if @resume.skills?.length > 0
230230
article {id: \skills class: \flex} ->
231231
$title \Skills \wrench-screwdriver

0 commit comments

Comments
 (0)