Source : https://stackoverflow.com/a/20343333/8380606
So the following will work:
tmp1.jade
- var label = 'value'
div.anyClass
include tmp2
tmp2.jade
div.otherClass
div.label
#{label}
You can also use mixins to pass variables, they are like functions (you define them first, then call them)
So you could do the following:
tmp1.jade
mixin labeldiv(myLabel)
div.otherClass
div.label
#{myLabel}
div.anyClass
+labelDiv("the label")
It's worth mentioning that you can also put mixins inside includes, if you want them to be common across multiple templates. You could do this:
myMixins.jade
mixin labeldiv(myLabel)
div.otherClass
div.label
#{myLabel}
tmp1.jade
include myMixins
div.anyClass
+labelDiv("the label")