hello.html.twig 210 B

123456789101112
  1. {% extends "base.html.twig" %}
  2. {% block body %}
  3. <h1>{{ message }}</h1>
  4. <h2>Environment</h2>
  5. <p>{{ app.environment }}</p>
  6. <h2>Debug ?</h2>
  7. {% if app.debug %}Yes{% else %}No{% endif %}
  8. {% endblock %}