I’ve got a page informations
that I’m trying to include as a sidebar on every page from base.html.twig
using the code
<aside>
{% include 'modular.html.twig' with {'page': page.find('informations')} %}
</aside>
Unfortunately this code results in the infamous PHP-FPM “Bad Gateway” error under Nginix. Is there a better way to include a page from a template?