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 %}
|
2023-09-09 22:48:14 +02:00
|
|
|
<li><a href="{{ path('app_podcast', { slug: podcast.slug }) }}">{{ podcast.name }}</a></li>
|
2023-05-11 17:03:52 +02:00
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
2023-09-09 22:48:14 +02:00
|
|
|
<p>The <a href="https://git.dece.space/dece/lsbc">LSBC</a> project is licensed as GPLv3.</p>
|
2023-10-14 18:26:09 +02:00
|
|
|
<a href="/login"><button>Login</button></a>
|
2023-05-11 17:03:52 +02:00
|
|
|
{% endblock %}
|