1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
export const educationSection = (resume) => resume.education && resume.education.length ? `
<section>
<h2>Education</h2>
<ul>
${resume.education.map(edu => `
<li>
<div class="title-period">
<h3>${edu.studyType ? `${edu.studyType} in ${edu.area || ''}` : edu.area || ''}</h3>
<span class="date">${edu.endDate || ''}</span>
</div>
<p>${edu.institution || ''}</p>
</li>
`).join('')}
</ul>
</section>
` : '';