From 95e66b3b4779c8b2a4f3d19c8973bcd82f92b545 Mon Sep 17 00:00:00 2001 From: Arnaud CHESNAY Date: Wed, 27 Sep 2017 10:05:14 +0200 Subject: 404 --- app.js | 14 ++++++++++++-- public/404.html | 21 --------------------- public/404.md | 4 ++++ 3 files changed, 16 insertions(+), 23 deletions(-) delete mode 100644 public/404.html create mode 100644 public/404.md diff --git a/app.js b/app.js index 4ad24b0..408004c 100644 --- a/app.js +++ b/app.js @@ -43,10 +43,20 @@ app.get('/', function(req, res) { app.get('*', function(req, res) { console.log("404 - " + req.url); - fs.readFile('public/404.html', 'utf8', function(err, data) { + fs.readFile('public/404.md', 'utf8', function(err, data) { if (err) return console.log(err); - res.status(404).send(data); + fs.readFile('public/css/style.css', 'utf8', function(err, style) { + var html = ''; + html += ''; + html += ''; + html += ''; + html += ''; + html += converter.makeHtml(data); + html += ''; + html += ''; + res.status(404).send(html); + }); }); }); diff --git a/public/404.html b/public/404.html deleted file mode 100644 index 2b40c91..0000000 --- a/public/404.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - 404 - RSC - - - - - - -
-
-

404

-

Teapot not found

-
-
- - - diff --git a/public/404.md b/public/404.md new file mode 100644 index 0000000..5367983 --- /dev/null +++ b/public/404.md @@ -0,0 +1,4 @@ +# 404 +## Teapot not found + +The page you are looking for does not exists -- cgit v1.2.3