church-api/church-website-axum/templates/sermon_detail.html
Benjamin Slingo 0c06e159bb Initial commit: Church API Rust implementation
Complete church management system with bulletin management, media processing, live streaming integration, and web interface. Includes authentication, email notifications, database migrations, and comprehensive test suite.
2025-08-19 20:56:41 -04:00

14 lines
408 B
HTML

{% extends "layout.html" %}
{% block content %}
<section class="section-2025">
<div class="container-2025">
<div class="card-2025 scroll-reveal">
<h1>Sermon Player</h1>
<p>Sermon ID: {{ sermon_id }}</p>
<p>Sermon player functionality will be implemented here.</p>
<a href="/sermons" class="btn-2025 btn-primary">Back to Sermons</a>
</div>
</div>
</section>
{% endblock %}