Includes significant breaking changes. Default port and transportation changed to http via port 80 Names of environment variables have changed.
12 lines
272 B
Twig
12 lines
272 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block content %}
|
|
{% if env.teapot|default(true) %}
|
|
<h1>{{ env.teapot_title }}</h1>
|
|
<p>{{ env.teapot_message }}</p>
|
|
{% else %}
|
|
<h1>{{ env.too_many_title }}</h1>
|
|
<p>{{ env.too_many_message }}</p>
|
|
{% endif %}
|
|
{% endblock %}
|