]> git.drewedgar.com - website.git/blob - src/_includes/components/cv/experience.liquid
FEAT: added 404 page
[website.git] / src / _includes / components / cv / experience.liquid
1 <section>
2   <h2>Research</h2>
3   {%- for project in cv.researchProjects %}
4     <section>
5       <header>
6         <h3>{{ project.name }}</h3>
7           {%- if project.supervisors and project.supervisors.size > 0 -%}
8             <span class="supervisor">
9               {% if project.supervisors.size > 1 %}Supervisors{% else %}Supervisor{% endif %}: 
10               {% for sup in project.supervisors -%}
11                 <a href="{{ sup.url }}" target="_blank" rel="noopener noreferrer">{{ sup.name }}</a>{% unless forloop.last %}, {% endunless %}
12               {%- endfor -%}
13             </span>
14           {%- endif %}
15       </header>
16       <ul>
17         {%- for highlight in project.highlights %}
18           <li>
19             {{ highlight }}
20           </li>
21         {%- endfor %}
22       </ul>
23     </section>
24   {%- endfor %}
25 </section>