html-over-websockets-with-d.../app/website/templates/pages/talk-single.html

18 lines
502 B
HTML
Raw Normal View History

2021-11-20 19:54:57 +01:00
{% load slippers %}
<main id="main" data-scroll-to-top="true">
2021-11-13 09:07:55 +01:00
<article>
<header>
<p>
<img width="200" src="{{ talk.image.url }}">
</p>
<h2>{{ talk.title }}</h2>
</header>
<p>
{{ talk.content }}
</p>
<footer>Author {{ talk.author.full_name }} - {{ talk.category.name }}</footer>
</article>
<p>
2021-11-21 09:34:54 +01:00
{% #link action="page" value="talks" page=1 %}More talks{% /link %}
2021-11-13 09:07:55 +01:00
</p>
</main>