Is it possible to use express without any template engine?
In your main file:
app.get('/', function(req, res){ res.render('index'); });
Your index.jade file should only contain:
include index.html
where index.html is the raw HTML you made.