Initial commit

This commit is contained in:
Thomas FORGIONE
2016-09-09 18:20:59 +02:00
commit 3490d8aab7
28 changed files with 53483 additions and 0 deletions

6
routes/index/index.js Normal file
View File

@@ -0,0 +1,6 @@
module.exports.index = function(req, res, render, next) {
res.setHeader('Content-Type', 'text/html');
render('index.pug', res.locals)
}

3
routes/index/urls.js Normal file
View File

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

View File

@@ -0,0 +1,5 @@
extends ../../../views/main.pug
block content
p.
Hello world !