html-over-websockets-with-d.../app/website/templates/pages/talks.html
Andros Fenollosa 04b1e5bf6c Load home page
2021-11-12 18:59:01 +01:00

10 lines
238 B
HTML

<main id="page">
{% for talk in talks %}
<article>
<header>{{ talk.title }}</header>
<p></p>
<footer>Author {{ talk.author.full_name }} - {{ talk.category.name }}</footer>
</article>
{% endfor %}
</main>