{% extends 'base.html.twig' %} {% block title %}Accueil - Ma collection de créatures{% endblock %} {% block stylesheets %} {% endblock %} {% block body %} {% if app.user %}
Connecté en tant que {{ app.user.username }}
{% endif %}

🧬 Ma collection de créatures 🐾

🌱 Vos créatures de base

{% for emoji in emojisDeBase %}
Level {{ emoji.nbCombatGagne }}
{{ emoji.code }}
{{ emoji.nom }}
ℹ️
{% endfor %}
🔻

📦 Votre collection personnelle

{% for emoji in emojisCrees %}
Level {{ emoji.nbCombatGagne }}
{{ emoji.code }}
{{ emoji.nom }}
ℹ️
{% endfor %}
Sélectionnez 2 créatures de votre choix pour commencer ...
{% endblock %} {% block javascripts %} {% endblock %}