Add hero section with background gradient and logo to enhance user interface

This commit is contained in:
Edgar P. Burkhart 2025-06-14 13:49:01 +02:00
parent 3042382ae4
commit 9cb4f42d07
Signed by: edpibu
GPG key ID: 9833D3C5A25BD227
4 changed files with 87 additions and 44 deletions

View file

@ -1,7 +1,11 @@
{% extends "base.html" %}
{% block content %}
<h1>Musik</h1>
{% if user.is_authenticated %}
{% include "game/home.html" %}
{% endif %}
{% include "game/home.html" %}
{% endblock content %}
{% block body %}
{% if user.is_authenticated %}
{{ block.super }}
{% else %}
{% include "hero.html" %}
{% endif %}
{% endblock body %}