LSBC/templates/feed/podcast.html.twig

12 lines
317 B
Twig
Raw Normal View History

2023-05-11 17:03:52 +02:00
{% extends 'base.html.twig' %}
{% 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 %}