-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathapp.js
More file actions
61 lines (46 loc) · 1.31 KB
/
app.js
File metadata and controls
61 lines (46 loc) · 1.31 KB
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
/**
* Module dependencies.
*/
var express = require("express");
var http = require("http");
var path = require("path");
var favicon = require("serve-favicon");
var morgan = require("morgan");
var app = express();
app.set("port", process.env.PORT || 3000);
app.set("views", __dirname + "/views");
app.set("view engine", "pug");
app.use(favicon(path.join(__dirname, "public", "ico", "favicon.ico")));
app.use(morgan("combined"));
app.use(function(req, res, next) {
app.locals.pretty = true;
next();
});
app.use(express.static(path.join(__dirname, "public")));
app.get("/", function(req, res) {
res.render("default");
});
app.get("/fluid", function(req, res) {
res.render("layouts/fluid");
});
app.get("/hero", function(req, res) {
res.render("layouts/hero");
});
app.get("/marketing", function(req, res) {
res.render("layouts/marketing-alternate");
});
app.get("/narrow", function(req, res) {
res.render("layouts/marketing-narrow");
});
app.get("/signin", function(req, res) {
res.render("layouts/signin");
});
app.get("/starter", function(req, res) {
res.render("layouts/starter-template");
});
app.get("/sticky", function(req, res) {
res.render("layouts/sticky-footer");
});
http.createServer(app).listen(app.get("port"), function() {
console.log("Express server listening on port " + app.get("port"));
});