How to retrieve all Variables from a Twig Template?
This is useful I find to get all the top-level keys available in the current context: <ol> {% for key, value in _context %} <li>{{ key }}</li> {% endfor %} </ol> Thanks to https://www.drupal.org/node/1906780