diff --git a/home/templates/home/home_events_page.html b/home/templates/home/home_events_page.html index 43e9f1e27920c4862a1e0af75aecc1aafc45edd8..932cba6613844ddfb863715e9840dbe3472eb3aa 100644 --- a/home/templates/home/home_events_page.html +++ b/home/templates/home/home_events_page.html @@ -16,13 +16,13 @@ {% for event in page.events %} <li class="text-gray-500"> <a - class="flex gap-2 flex-wrap" + class="flex flex-col flex-wrap" href="{{ event.url }}" > <div class="underline text-black">{{ event.title }}</div> <div> - ({{ event.date }}{% if event.location %}, - {{ event.location }}{% endif %}) + {{ event.date }}{% if event.location %}, + {{ event.location }}{% endif %} </div> </a> </li> diff --git a/home/templates/home/home_people_page.html b/home/templates/home/home_people_page.html index 057f21c6a184c6e22a93ffa69a22e306f91e03f0..1994ae91611a9ef6e5e5073a792848fcf1af1f66 100644 --- a/home/templates/home/home_people_page.html +++ b/home/templates/home/home_people_page.html @@ -14,11 +14,15 @@ <ul class="flex flex-col gap-2 list-disc ml-3 font-serif"> {% for person in page.people %} - <li> + <li 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 }}{% endif %} + >{{ person.full_name }}</a> + + {% if person.position %} + <span class="text-gray-500">{{ person.inline_position }}</span> + {% endif %} </li> {% endfor %} </ul>