example bits
[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 simply a layout";
3         tkl += " and nothing else!</body></html>";
4         
5         return tkl;
6 }