LSBC/templates/podcast/new.html.twig

12 lines
244 B
Twig
Raw Normal View History

{% extends 'base.html.twig' %}
{% block title %}New Podcast{% endblock %}
{% block body %}
2023-10-14 18:26:09 +02:00
<h1>Create new Podcast</h1>
2023-10-14 18:26:09 +02:00
{{ include('podcast/_form.html.twig') }}
2023-10-14 18:26:09 +02:00
<a href="{{ path('app_podcast_index') }}">back to list</a>
{% endblock %}