From f288ff1c9485d60865defa583c0e3a9ea56bd73b Mon Sep 17 00:00:00 2001 From: Bobby Date: Tue, 15 Mar 2022 22:45:23 -0400 Subject: remove twitter widgets --- public/index.html | 1 - public/views/about.html | 1 - public/views/admin.html | 2 -- public/views/repositories.html | 3 +-- server.js | 6 +++--- 5 files changed, 4 insertions(+), 9 deletions(-) diff --git a/public/index.html b/public/index.html index d058439..4b46aa1 100644 --- a/public/index.html +++ b/public/index.html @@ -39,7 +39,6 @@

I'm Bobby. Welcome to my personal website. Unfortunately, this website is currently under maintenance and I am working on a completely new look. Please come back soon...

- diff --git a/public/views/about.html b/public/views/about.html index 300e42d..4a159b7 100644 --- a/public/views/about.html +++ b/public/views/about.html @@ -197,7 +197,6 @@ - diff --git a/public/views/admin.html b/public/views/admin.html index c7daacc..1e1bc52 100644 --- a/public/views/admin.html +++ b/public/views/admin.html @@ -69,9 +69,7 @@ - - diff --git a/public/views/repositories.html b/public/views/repositories.html index 0dcf283..9a2dbc9 100644 --- a/public/views/repositories.html +++ b/public/views/repositories.html @@ -69,12 +69,11 @@ - + - \ No newline at end of file diff --git a/server.js b/server.js index b52da88..4568b21 100644 --- a/server.js +++ b/server.js @@ -32,11 +32,11 @@ app.use( ); app.use("/static", express.static(__dirname + "/static")); app.use(express.static(__dirname + "/public")); -app.use(routes); - -app.set("views", __dirname + "/public/views"); app.engine("html", require("ejs").renderFile); app.set("view engine", "html"); +app.set("views", __dirname + "/public/views"); +app.use(routes); + // Start the server app.listen(port, () => { -- cgit v1.2.3