25 lines
894 B
HTML
25 lines
894 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}About{% endblock %}
|
|
|
|
{% block content %}
|
|
<section class="about">
|
|
<h2>About Podcastrr</h2>
|
|
<p>Podcastrr is a podcast management application similar to Sonarr but for podcasts, built with Python and Flask.</p>
|
|
|
|
<h3>Features</h3>
|
|
<ul>
|
|
<li><strong>Search for Podcasts</strong>: Find podcasts from various sources</li>
|
|
<li><strong>Track Podcasts</strong>: Monitor your favorite podcasts for new episodes</li>
|
|
<li><strong>Download Management</strong>: Automatically download new episodes and manage storage</li>
|
|
<li><strong>Custom Naming</strong>: Configure how downloaded files are named</li>
|
|
<li><strong>Web Interface</strong>: Manage everything through an intuitive web interface</li>
|
|
</ul>
|
|
|
|
<h3>Version</h3>
|
|
<p>1.0.0</p>
|
|
|
|
<h3>License</h3>
|
|
<p>MIT</p>
|
|
</section>
|
|
{% endblock %}
|