LSBC/templates/feed/podcast.html.twig
dece e3d80d1093 Add security
1. Users
2. Login/logout controllers
3. Podcasts can have an owner to restrict their access in the backoffice
2023-09-09 22:49:46 +02:00

14 lines
367 B
Twig

{% extends 'base.html.twig' %}
{% block body %}{{ podcast.name }}{% endblock %}
{% block body %}
<h1>{{ podcast.name }}</h1>
<p>
By {{ podcast.author }}.<br>
Contact: <code>{{ podcast.email }}</code><br>
{% set feed = url('app_podcast_feed', {slug: podcast.slug}) %}
Feed URL: <a href="{{ feed }}">{{ feed }}</a><br>
</p>
{% endblock %}