committing hotfix to registration

This commit is contained in:
Julian Lam
2013-05-28 11:50:09 -04:00
parent dec9a3bef9
commit 7f77ec2c5f
4 changed files with 38 additions and 32 deletions

View File

@@ -85,7 +85,10 @@ var express = require('express'),
return;
}
res.send(templates['header'] + app.create_route(route) + templates['footer']);
res.send(
templates['header'].parse({ cssSrc: global.config['theme:src'] || '/vendor/bootstrap/css/bootstrap.min.css' }) +
app.create_route(route) + templates['footer']
);
});
}(routes[i]));
}