Conference URLs now use slugs instead of integer id

This commit is contained in:
2024-07-28 01:31:09 -04:00
parent e3bffbc418
commit 31f65e2489
8 changed files with 125 additions and 5 deletions

View File

@@ -16,7 +16,7 @@
<h1><a href="{{ path('homepage') }}">Guestbook</a></h1>
<ul>
{%for conference in conferences %}
<li><a href="{{ path('conference', { id: conference.id }) }}">{{ conference }}</a></li>
<li><a href="{{ path('conference', { slug: conference.slug }) }}">{{ conference }}</a></li>
{% endfor %}
</ul>
<hr/>