Personal blog written from scratch using Node.js, Bootstrap, and MySQL. https://jrtechs.net
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
355 B

  1. const routes = require('express').Router();
  2. const about = require('./about');
  3. routes.use('/about', about);
  4. const contact = require('./contact');
  5. routes.use('/contact', contact);
  6. const projects = ["/steam/"];
  7. routes.get('/', (request, result) =>
  8. {
  9. //blog home
  10. });
  11. routes.get('*', (request, result) =>
  12. {
  13. //error
  14. });
  15. module.exports = routes;