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

improve basic list design

parent 1258e1ce
No related branches found
No related tags found
No related merge requests found
...@@ -16,13 +16,13 @@ ...@@ -16,13 +16,13 @@
{% for event in page.events %} {% for event in page.events %}
<li class="text-gray-500"> <li class="text-gray-500">
<a <a
class="flex gap-2 flex-wrap" class="flex flex-col flex-wrap"
href="{{ event.url }}" href="{{ event.url }}"
> >
<div class="underline text-black">{{ event.title }}</div> <div class="underline text-black">{{ event.title }}</div>
<div> <div>
({{ event.date }}{% if event.location %}, {{ event.date }}{% if event.location %},
{{ event.location }}{% endif %}) {{ event.location }}{% endif %}
</div> </div>
</a> </a>
</li> </li>
......
...@@ -14,11 +14,15 @@ ...@@ -14,11 +14,15 @@
<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> <li class="flex flex-col">
<a <a
class="underline" class="underline"
href="{{ person.url }}" 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> </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