Is it possible to pass in parameter for include
ed pug files inside the parent pug file. For example if I have a child template example.pug
:
p #{name}'s Pug source code!
And a parent parent.pug
h1
| Hello world
include example.pug
It would be nice to do something like
h1
| Hello world
include example.pug {name1}
include exmaple.pug {name2}
What is the way to do this?