-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
42 lines (38 loc) · 947 Bytes
/
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
const express = require('express');
const hbs = require('hbs');
const app = express();
const port = process.env.PORT || 3030;
app.use(express.static(__dirname +'/public'));
app.use((req,res,next)=>{
const now = new Date().toString();
console.log(req.method);
console.log(req.url);
next();
});
app.set('view engine','hbs');
hbs.registerPartials(__dirname + '/views/partials');
hbs.registerHelper('currentYear',()=>{
return new Date().getFullYear()
})
// app.use((req,res,next)=>{
// res.render('maintenance.hbs');
// });
app.get('/',(req,res)=>{
res.render('home.hbs',{
title: 'Home',
});
});
app.get('/about',(req,res)=>{
res.render('about.hbs',{
title: 'About',
year:new Date().getFullYear()
});
});
app.get('/project',(req,res)=>{
res.render('project.hbs',{
title: 'My Projects',
});
});
app.listen(port,()=>{
console.log(`Listening to port ${port}`);
});