1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
export const certificatesSection = (resume) => resume.certificates && resume.certificates.length ? `
<section id="certificates">
<h2>Certificates</h2>
<ul>
${resume.certificates.map(cert => `
<li>
<div class="title-period">
<h3>${cert.name || ''}</h3>
<span class="date">${cert.date || ''}</span>
</div>
<p>${cert.issuer || ''}</p>
<p>${cert.subjects ? cert.subjects.join(', ') : ''}</p>
</li>
`).join('')}
</ul>
</section>
` : '';
Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
Comments
Nobody has commented on this val yet: be the first!
August 15, 2024