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