diff --git a/server.js b/server.js index 3d5cece3abd..350d061410d 100644 --- a/server.js +++ b/server.js @@ -8,7 +8,9 @@ app.use(morgan('combined')); app.get('/', function (req, res) { res.sendFile(path.join(__dirname, 'ui', 'index.html')); }); - +app.get('/article-one', function (req, res) { + res.sendFile(path.join(__dirname, 'ui', 'article-one.html')); +}); app.get('/ui/style.css', function (req, res) { res.sendFile(path.join(__dirname, 'ui', 'style.css')); }); diff --git a/ui/article-one.html b/ui/article-one.html new file mode 100644 index 00000000000..0d72ede20da --- /dev/null +++ b/ui/article-one.html @@ -0,0 +1,20 @@ + + +
+This is first article of shagufta
+