UNPKG

vpn.email

Version:
16 lines (15 loc) 544 B
"use strict"; const fs = require("fs"); module.exports = function (app) { app.get("/home/", (req, res) => { console.log('-------------------------------------'); const logo = fs.readFileSync('../../images/vpnemail.svg', 'utf8'); res.render('home', { title: 'home', logo: logo }); }); app.get("/home/install", (req, res) => { res.render('home/install', { title: 'install' }); }); app.get("/home/question", (req, res) => { res.render('home/question', { title: 'question' }); }); };