Concider this pseudo-ish server side code
if(isFixed) {
} else {
}
Inner element
You need to separate control flow from the template. Try this:
divClass = null
if isFixed
divClass = "fixed"
div(class=divClass)
p inner element
Which in turn might suggest factoring out the "isFixed" parameter into the actual divClass parameter to be passed on. But that depends on your remaining code/template of course.
As an alternative, try a mixin:
mixin content
p inner element
if (isFixed)
div(class="test")
mixin content
else
div(class="other")
mixin content