Good afternoon.
There app.js the following:
const express = require("express");
const app = express();
var pageInfo = {
home: {
link: "/",
title: "Main page",
description: "Some text"
}
};
app.set("view engine", "pug");
app.use("/public/", express.static(__dirname + "/static/"));
app.use("/", function(request, respo...