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

fix list display

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