12 lines
210 B
Twig
12 lines
210 B
Twig
{% extends "base.html.twig" %}
|
|
|
|
{% block body %}
|
|
<h1>{{ message }}</h1>
|
|
|
|
<h2>Environment</h2>
|
|
<p>{{ app.environment }}</p>
|
|
|
|
<h2>Debug ?</h2>
|
|
{% if app.debug %}Yes{% else %}No{% endif %}
|
|
|
|
{% endblock %}
|