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 @@ ...@@ -14,15 +14,17 @@
<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>
<a <div class="flex flex-col">
class="underline" <a
href="{{ person.url }}" class="underline"
>{{ person.full_name }}</a> href="{{ person.url }}"
>{{ person.full_name }}</a>
{% 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.
Finish editing this message first!
Please register or to comment