Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save AdeptSEO/726f378a74fe6060d764c3382f2a89b3 to your computer and use it in GitHub Desktop.
Save AdeptSEO/726f378a74fe6060d764c3382f2a89b3 to your computer and use it in GitHub Desktop.
Nunjucks - Import all macros into a global variable
{# Import macros for global use in all views #}
{% set components = {} %}
{% for component in macroFilePaths %}
{% import component as temp %}{% set macro = _.assign(components, temp) %}
{% endfor %}
{# end #}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment