Concider this pseudo-ish server side code
if(isFixed) {
} else {
}
Inner element
Jade doesn't seem to have a built in solution to start and end the tags other than utilizing the 'pipe' character to render plain text.
- if(mode === 'fixed') {
|
- }
| I cannot get this to be an inner element :(
- if(mode === 'fixed') {
|
- }
Less cluttered solution -
div(class=(isFixed) ? 'fixed' : '')
p inner element