aboutsummaryrefslogtreecommitdiff
path: root/routes
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@gmail.com>2019-08-02 20:54:44 -0400
committerAndrew Lee <alee14498@gmail.com>2019-08-02 20:54:44 -0400
commitb0b971aba04a848c7ffa155cb281ea8fd9b2292e (patch)
tree86e8757fa4625f8ed35a624794ed05d9b521481d /routes
parentcc2c3863b0a3ec26e6610163c00b5f8f6aedc716 (diff)
downloadalp-website-b0b971aba04a848c7ffa155cb281ea8fd9b2292e.tar.gz
alp-website-b0b971aba04a848c7ffa155cb281ea8fd9b2292e.tar.bz2
alp-website-b0b971aba04a848c7ffa155cb281ea8fd9b2292e.zip
Added teams in about and some beautifying
Diffstat (limited to 'routes')
-rw-r--r--routes/about.js19
-rw-r--r--routes/index.js19
-rw-r--r--routes/projects.js27
3 files changed, 65 insertions, 0 deletions
diff --git a/routes/about.js b/routes/about.js
index a46108c..9222133 100644
--- a/routes/about.js
+++ b/routes/about.js
@@ -1,3 +1,22 @@
+/*********************************
+
+ Alee Productions Website: Website for Alee Productions
+ Copyright (C) 2019 Alee
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <https://www.gnu.org/licenses/>.
+
+**************************************/
const express = require("express");
const router = express.Router();
diff --git a/routes/index.js b/routes/index.js
index b12714e..24859b6 100644
--- a/routes/index.js
+++ b/routes/index.js
@@ -1,3 +1,22 @@
+/*********************************
+
+ Alee Productions Website: Website for Alee Productions
+ Copyright (C) 2019 Alee
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <https://www.gnu.org/licenses/>.
+
+**************************************/
const express = require("express");
const router = express.Router();
diff --git a/routes/projects.js b/routes/projects.js
new file mode 100644
index 0000000..6e45ce0
--- /dev/null
+++ b/routes/projects.js
@@ -0,0 +1,27 @@
+/*********************************
+
+ Alee Productions Website: Website for Alee Productions
+ Copyright (C) 2019 Alee
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <https://www.gnu.org/licenses/>.
+
+**************************************/
+const express = require("express");
+const router = express.Router();
+
+router.get('/', (req, res) => {
+ res.render('projects', {title: 'Projects | Alee Productions'});
+ });
+
+module.exports = router; \ No newline at end of file