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.
16 lines
590 B
16 lines
590 B
{# Uses page variable: filter.education #}
|
|
{# Uses data store: education.programs #}
|
|
{% set educationFilter = filter.education if filter and filter.education else "all" %}
|
|
{% set educationFiltered = education.programs | identifyHighlights(educationFilter) %}
|
|
|
|
<div class="section-header">
|
|
<h2>Education</h2>
|
|
{% if educationFiltered | hasLowlights %}
|
|
{% include "components/resume/highlight-icon.njk" %}
|
|
{% endif %}
|
|
</div>
|
|
<ul class="programs">
|
|
{% for program in educationFiltered | sortHighlightsFirst %}
|
|
{% include "components/resume/education.njk" %}
|
|
{% endfor %}
|
|
</ul>
|
|
|