forked from hasura-imad/imad-2016-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
109 lines (103 loc) · 2.89 KB
/
server.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
var express = require('express');
var morgan = require('morgan');
var path = require('path');
var app = express();
app.use(morgan('combined'));
var articles ={
'article-one' : {
title: 'Hi this is artciicle 1',
head: 'article 1',
date: 'spt 5',
content: `
<p>
This is content fo my fistrt artcle.
</p>
<p>
This is content fo my fistrt artcle.
</p>
<p>
This is content fo my fistrt artcle.
</p>`
},
'article-two' : {
title: 'Hi this is artciicle 2',
head: 'article 2',
date: 'spt 10',
content: `
<p>
This is content fo my second artcle.
</p>
<p>
This is content fo my second artcle.
</p>
<p>
This is content fo my second artcle.
</p>`
},
'article-three' : {
title: 'Hi this is artciicle 3',
head: 'article 3',
date: 'spt 15',
content: `
<p>
This is content fo my third artcle.
</p>
<p>
This is content fo my third artcle.
</p>
<p>
This is content fo my third artcle.
</p>`
}
};
function createTemp(data){
var title= data.title;
var head=data.head;
var content= data.content;
var date=data.date;
var htmltemp =`
<!doctype html>
<html>
<head>
<title>
${title}
</title>
<link href="/ui/style.css" rel="stylesheet" />
<meta name="viewport" content="width=device-width, initial-scale=1"/>
</head>
<body>
<div class="container">
<div>
<a href="/">Home</a>
</div>
<hr/>
<h3>${head}</h3>
<div>
${date}
</div>
<div>
${content}
</div>
</div>
</body>
</html>
`;
return htmltemp;
}
app.get('/', function (req, res) {
res.sendFile(path.join(__dirname, 'ui', 'index.html'));
});
app.get('/ui/style.css', function (req, res) {
res.sendFile(path.join(__dirname, 'ui', 'style.css'));
});
app.get('/ui/madi.png', function (req, res) {
res.sendFile(path.join(__dirname, 'ui', 'madi.png'));
});
app.get('/:articleName', function (req, res) {
var articleName=req.params.articleName;
res.send(createTemp(articles[articleName]))
});
var port = 8080; // Use 8080 for local development because you might already have apache running on 80
app.listen(8080, function () {
console.log(`IMAD course app listening on port ${port}!`);
});