From 5de77965b1d6d3abbcb30493a509fdd2005ef7da Mon Sep 17 00:00:00 2001 From: jrtechs Date: Wed, 12 Jun 2019 18:59:24 -0400 Subject: [PATCH] Created outline for new photography section. --- routes/photos/index.js | 19 +++++++++++++++++++ templates/photos/photosEntry.html | 14 ++++++++++++++ 2 files changed, 33 insertions(+) create mode 100644 routes/photos/index.js create mode 100644 templates/photos/photosEntry.html diff --git a/routes/photos/index.js b/routes/photos/index.js new file mode 100644 index 0000000..184b782 --- /dev/null +++ b/routes/photos/index.js @@ -0,0 +1,19 @@ +const routes = require('express').Router(); + +const utils = require('../utils/utils'); + +const whiskers = require('whiskers'); + +const url = require('url'); + +routes.get('/', (request, result) => +{ + //do something later +}); + +routes.get('*', (request, result) => +{ + console.log("ding"); +}); + +module.exports = routes; \ No newline at end of file diff --git a/templates/photos/photosEntry.html b/templates/photos/photosEntry.html new file mode 100644 index 0000000..5c0d55e --- /dev/null +++ b/templates/photos/photosEntry.html @@ -0,0 +1,14 @@ +{header} + +
+ +
+ +{footer} \ No newline at end of file