Skip to content
Snippets Groups Projects
Commit a0dbaf76 authored by Tomáš Valenta's avatar Tomáš Valenta
Browse files

fix list display

parent 14a3c117
No related branches found
No related tags found
No related merge requests found
......@@ -14,15 +14,17 @@
<ul class="flex flex-col gap-2 list-disc ml-3 font-serif">
{% for person in page.people %}
<li class="flex flex-col">
<a
class="underline"
href="{{ person.url }}"
>{{ person.full_name }}</a>
<li>
<div class="flex flex-col">
<a
class="underline"
href="{{ person.url }}"
>{{ person.full_name }}</a>
{% if person.position %}
<span class="text-gray-500">{{ person.inline_position }}</span>
{% endif %}
{% if person.position %}
<span class="text-gray-500">{{ person.inline_position }}</span>
{% endif %}
</div>
</li>
{% endfor %}
</ul>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment