Just to be clear, we're including a template from within PAGE_CONTAINER (rather than in the content template) that contains several conditionals that we use a lot, it's working fine in xf1 but doesn't seem to be working in xf2
As an example, in PAGE_CONTAINER just below the doctype line:
Code:
<!doctype html>
<xf:include template="conditionals" />
{{ dump($someVariable) }}
and within "uix_conditionals" we'd have:
Code:
<xf:set var="$someVariable" value="1" />
We use this for things like welcome block, extended footer etc just so we don't have to duplicate conditionals, and we split it into a separate template to keep the PAGE_CONTAINER template cleaner and easier to merge down the line