Concider this pseudo-ish server side code
if(isFixed) {
<div class="fixed">
} else {
<div>
}
<p>Inner element</p>
</div>
I try to do this in jade but...
- if(mode === 'fixed') {
div#tabbar
- }
p ...I cannot get this to be an inner element :(
It always renders like this, with the </div> closed:
<div id="tabbar"></div><p>I want this inside of the div</p>
Am I messing up the indention? Thanks!