Skip to content

Commit

Permalink
Update project_list.html
Browse files Browse the repository at this point in the history
  • Loading branch information
Ritten11 authored Oct 21, 2024
1 parent afb5c72 commit bcb1164
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions _includes/project_list.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,16 @@ <h3> {{include.topic.name}}</h3>
{% for project in projects %}
<li>
<h4>
{{project.title}}
<span class='supervisor'>
({% assign supervisor_name = project.supervisor | split: ' '%}
{{ supervisor_name.first }},
{% if project.degree != '' %}
{{project.degree}}
{% endif %})
</span>
<span {% if project.taken == 'True' %} style='text-decoration: line-through' {% endif %}>
{{project.title}}
<span class='supervisor'>
({% assign supervisor_name = project.supervisor | split: ' '%}
{{ supervisor_name.first }},
{% if project.degree != '' %}
{{project.degree}}
{% endif %})
</span>
</span>
</h4>
<!-- This hidden 'contact' class is used to determine the unique supervisors of the topic to which this project belongs. -->
<span class='contact hidden'>{{project.supervisor}} ({{project.contact}})</span>
Expand All @@ -35,4 +37,4 @@ <h4>
</li>
{% endfor %}
</ul>
</li>
</li>

0 comments on commit bcb1164

Please sign in to comment.