{% extends "base.html" %} {% block title %}Home{% endblock %} {% block content %}

Welcome to Podcastrr

A podcast management application similar to Sonarr but for podcasts.

Recent Podcasts

{% if recent_podcasts %}
{% for podcast in recent_podcasts %}
{% if podcast.image_url %} {{ podcast.title }} {% else %}
No Image
{% endif %}

{{ podcast.title }}

{{ podcast.author }}

View Episodes
{% endfor %}
{% else %}

No podcasts found. Search for podcasts to get started.

{% endif %}
{% endblock %}