templates/home/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block body %}
  3.     {% if app.user is not null %}
  4.         {% if hasSteamId %}
  5.             {% if isRegistered %}
  6.                 {% include 'home/account.html.twig' %}
  7.             {% else %}
  8.                 {% include 'register/register_form.html.twig' %}
  9.             {% endif %}
  10.         {% else %}
  11.             {% include 'connection/steam.html.twig' %}
  12.         {% endif %}
  13.     {% else %}
  14.         {% include 'connection/discord.html.twig' %}
  15.     {% endif %}
  16. {% endblock %}