LSBC/templates/feed/index.html.twig

13 lines
451 B
Twig
Raw Normal View History

2023-05-11 17:03:52 +02:00
{% extends 'base.html.twig' %}
{% block body %}
<p>Podcasts available on this LSBC instance:</p>
<ul>
{% for podcast in podcasts %}
<li><a href="{{ path('app_podcast', { slug: podcast.slug }) }}">{{ podcast.name }}</a></li>
2023-05-11 17:03:52 +02:00
{% endfor %}
</ul>
<p>The <a href="https://git.dece.space/dece/lsbc">LSBC</a> project is licensed as GPLv3.</p>
2024-02-25 20:18:24 +01:00
<a href="/login" class="btn btn-primary">Login</a>
2023-05-11 17:03:52 +02:00
{% endblock %}