27 lines
727 B
Twig
27 lines
727 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}Home{% endblock %}
|
|
|
|
{% block body %}
|
|
|
|
<div class="center">
|
|
|
|
{% if not app.user %}
|
|
<h1>Bienvenue chez McDoPlus !</h1>
|
|
{% else %}
|
|
<h1>Salut {{ app.user.email }}</h1>
|
|
{% endif %}
|
|
<h5>Tous les menus sont à <code><span style="font-size: 35px;">25€</span></code></h5>
|
|
<ul class="center">
|
|
<li>Entrée</li>
|
|
<li>Plat</li>
|
|
<li>Dessert</li>
|
|
</ul>
|
|
<h6>Réserver/Commander :</h6>
|
|
<ul class="center">
|
|
{% for resto in restos %}
|
|
<li><code><a href="{{ path('app_home_choice', {'idresto': resto.id}) }}">{{ resto.address }}, {{ resto.ville }}, {{ resto.pay }}</a></code></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
{% endblock %}
|