You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
490 B
Twig
14 lines
490 B
Twig
{% extends '/base.html.twig' %}
|
|
|
|
{% block title %}Accueil - {{ parent() }}{% endblock %}
|
|
|
|
{% block mainContent %}
|
|
<h1>Recipe Manager</h1>
|
|
{% if app.user %}
|
|
Bienvenu {{ app.user }}
|
|
{% else %}
|
|
<p>Bienvenu sur Recipe Manager, le gestionnaire de recette de jeux vidéos.</p>
|
|
{# <p>Merci de vous <a href="{{ path('user_signIn') }}">connecter</a> ou <a href="{{ path('user_signOut') }}">créer un compte</a> pour commencer.</p>#}
|
|
{% endif %}
|
|
{% endblock %}
|