Skip to content

Instantly share code, notes, and snippets.

@brittanmcg
Created January 13, 2015 18:19
Show Gist options
  • Save brittanmcg/1b5ce7ba3f99fb7378ed to your computer and use it in GitHub Desktop.
Save brittanmcg/1b5ce7ba3f99fb7378ed to your computer and use it in GitHub Desktop.
Twig conditional
{% if random(1) == 1 %}
{% set sidebarQuery = "withSidebar" %}
{% include 'file.html.twig' %}
{% else %}
{% set sidebarQuery = "withoutSidebar" %}
{% endif %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment