f02b4398c213825e6db9118e43c5e305dd6a82f7
[nodejsws.git] / examples / simple / purls / justlayout.js
1 exports.layout = function(request, response) {
2         var tkl = "<html><body><h1>Just a Layout</h1>this purl is simple a layout";
3         tkl += " and nothing else!</body></html>";
4         
5         return tkl;
6 }