I am having problem rendering data sent from node in jade.
this is how my route looks like
router.get('/', function(req, res) { res.render('about', {aaaa: 'do not touch my data'}); }); and in jade I am doing something like this (read in other questions) :
extends layout block content p #{aaaa} Seems like it solved other people problems but not mine. Any ideas what Im doing wrong?