musik/base/templates/index.html

12 lines
267 B
HTML
Raw Normal View History

2025-06-13 15:51:32 +02:00
{% extends "base.html" %}
{% block content %}
{% include "game/home.html" %}
{% endblock content %}
{% block body %}
{% if user.is_authenticated %}
{{ block.super }}
{% else %}
{% include "hero.html" %}
{% endif %}
{% endblock body %}