Added linked list implementation

This commit is contained in:
Thomas FORGIONE
2015-06-10 17:24:07 +02:00
parent 34b312ae3b
commit 8753d9496d
6 changed files with 290 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
module.exports.index = function(req, res) {
res.setHeader('Content-Type', 'text/html');
res.render('index.jade', res.locals, function(err, out) {
res.send(out);
});
}

3
controllers/list/urls.js Normal file
View File

@@ -0,0 +1,3 @@
module.exports = {
'/list': 'index'
}

View File

@@ -0,0 +1,11 @@
extends ../../../views/main
block title
title #{title} - Test
block extrajs
script(src='/static/js/List.min.js')
script(src='/static/js/ListTest.min.js')
block content
Hello