Skip to content

Instantly share code, notes, and snippets.

@rcolepeterson
Last active April 18, 2016 20:35
Show Gist options
  • Save rcolepeterson/66a0918cdccefb8bdcfc371cad13c85c to your computer and use it in GitHub Desktop.
Save rcolepeterson/66a0918cdccefb8bdcfc371cad13c85c to your computer and use it in GitHub Desktop.
drupal commands
Discovering and Inspecting Variables in Twig Templates
{{ dump(_context|keys) }}
or
<ol>
{% for key, value in _context %}
<li>{{ key }}</li>
{% endfor %}
</ol>
ref links:
https://www.drupal.org/node/1906780
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment