Skip to content

Instantly share code, notes, and snippets.

@karlhorky
Last active February 4, 2016 07:47
Show Gist options
  • Save karlhorky/cad626b6c3cf63696db0 to your computer and use it in GitHub Desktop.
Save karlhorky/cad626b6c3cf63696db0 to your computer and use it in GitHub Desktop.
Demo of potential include_when Twig tag
{% include_when {
'config.azubiTabs': 'azubi-tabs.twig'
} %}
{% include_when {
'config.footerUs': 'layouts/footer-us.twig',
default : 'layouts/footer.twig'
} %}
{% include_when {
'config.home.dialog == "us"': 'layouts/dialog-us.twig',
'config.home.dialog == "ca"': 'layouts/dialog-ca.twig'
} %}
{% include_when {
'config.hasCustomHome': "index/#{locale()}/index.twig",
default : "index/index.twig"
} %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment