Skip to content

Commit

Permalink
Fix issue in thesis list (labels singular/plural)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcopernpruner committed Aug 27, 2024
1 parent 1226a50 commit 37f136d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _includes/list-theses.html
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@
<li>
{% if author %}{{ author.name }} {{ author.surname }}{% if detailsString %} ({{ detailsString }}){% endif %}<br />{% endif %}
<b>{{ publication.title }}</b>{% if publication.doi or publication.link %} (<a href="{% if publication.doi %}https://doi.org/{{ publication.doi }}{% else %}{{ publication.link }}{% endif %}">link</a>){% endif %}<br />
{% if supervisorsString %}Supervisor{% if publication.supervisor.size > 1 %}s{% endif %}: {{ supervisorsString }}{% if cosupervisorsString %} |{% endif %}{% endif %}
{% if cosupervisorsString %}Co-supervisor{% if publication.co-supervisor.size > 1 %}s{% endif %}: {{ cosupervisorsString }}{% endif %}
{% if supervisorsString %}Supervisor{% if supervisors.size > 1 %}s{% endif %}: {{ supervisorsString }}{% if cosupervisorsString %} |{% endif %}{% endif %}
{% if cosupervisorsString %}Co-supervisor{% if cosupervisors.size > 1 %}s{% endif %}: {{ cosupervisorsString }}{% endif %}
{% if publication.awards %}<br />Awards: {{ publication.awards }}{% endif %}
</li>
{% endfor %}
Expand Down

0 comments on commit 37f136d

Please sign in to comment.