11 lines
267 B
HTML
11 lines
267 B
HTML
{% 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 %}
|