1
0
Fork 0
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
reyasume/_includes/components/resume/education.njk

13 lines
507 B

{# Uses loop variable: program #}
<li class="program{% if not program.highlight %} lowlight{% endif %}">
{% if program.image %}
<img src="/img/{{ program.image }}" class="icon" aria-hidden="true" />
{% endif %}
<span class="institution">{{ program.institution }}</span>
<span class="name">{{ program.name }}</span>
{% if program.notes %}
<span class="notes">{{ program.notes }}</span>
{% endif %}
<span class="date">{{ program.endDate | monthAndYear }}</span>
</li>