LSBC/templates/feed/podcast.html.twig
dece bfd24948c1 Make first moves toward dropping EasyAdmin
Anything more than running your own CRUD seems too cumbersome.
2023-10-09 00:03:03 +02:00

15 lines
435 B
Twig

{% extends 'base.html.twig' %}
{% block title %}{{ podcast.name }} — LSBC{% 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>
<img src="{{ podcast.logoPath }}" alt="podcast logo">
{% endblock %}