]> git.drewedgar.com - website.git/blob - src/_includes/components/cv/education.liquid
CHORE: Altered readme
[website.git] / src / _includes / components / cv / education.liquid
1 <section>
2   <h2>Education</h2>
3   {%- for education in cv.education %}
4     <section>
5       <header>
6         <h3>
7           {{ education.studyType }} in {{ education.area }}
8         </h3>
9         <span>
10           {{ education.institution }}
11           {%- if education.specialisation -%}
12           <span class="specialisation">
13             Specialisation: {{ education.specialisation }}
14           </span>
15           {%- endif %}
16         </span>
17         <span>
18           {%- if education.award -%}
19           <span class="award">
20             {{ education.award }}
21           </span>
22           {%- endif %}
23         </span>
24         <span class="date">
25           {{ education.startDate }} &ndash; {{ education.endDate }}
26         </span>
27       </header>
28     </section>
29
30   {%- endfor %}
31 </section>