musik/base/templates/hero.html
Edgar P. Burkhart c115fa603c
All checks were successful
Build and push Docker image / build (push) Successful in 2m6s
Add footer template and include it in base and hero templates; update legal URL path
2025-06-14 19:05:53 +02:00

13 lines
318 B
HTML

{% load static %}
<div id="hero">
<main>
<i class="ri-music-ai-fill big-logo"></i>
<h1>Musik</h1>
<p>
<a href="{% url "login" %}" role="button"><i class="ri-play-fill"></i> Jouer</a>
</p>
</main>
<footer>
{% include "footer.html" %}
</footer>
</div>