From dbbc2d3692acaf0c3e54647a0b5fc4d03f5d79c3 Mon Sep 17 00:00:00 2001 From: Minteck Date: Sat, 4 Dec 2021 13:14:41 +0100 Subject: New stuff --- htdocs/public/creations/dev/index.ejs | 6 ++++++ htdocs/public/creations/electrode/index.ejs | 6 ++++++ htdocs/public/creations/index.ejs | 6 ++++++ htdocs/public/creations/kartik/index.ejs | 6 ++++++ htdocs/public/creations/neutron/index.ejs | 6 ++++++ htdocs/public/creations/unchained/index.ejs | 6 ++++++ htdocs/public/creations/video/index.ejs | 6 ++++++ 7 files changed, 42 insertions(+) create mode 100644 htdocs/public/creations/dev/index.ejs create mode 100644 htdocs/public/creations/electrode/index.ejs create mode 100644 htdocs/public/creations/index.ejs create mode 100644 htdocs/public/creations/kartik/index.ejs create mode 100644 htdocs/public/creations/neutron/index.ejs create mode 100644 htdocs/public/creations/unchained/index.ejs create mode 100644 htdocs/public/creations/video/index.ejs (limited to 'htdocs/public/creations') diff --git a/htdocs/public/creations/dev/index.ejs b/htdocs/public/creations/dev/index.ejs new file mode 100644 index 0000000..e41cbc4 --- /dev/null +++ b/htdocs/public/creations/dev/index.ejs @@ -0,0 +1,6 @@ +<% + + res.writeHead(301, { "Location": "/" + slang + "/creations" }); + res.end(); + +%> \ No newline at end of file diff --git a/htdocs/public/creations/electrode/index.ejs b/htdocs/public/creations/electrode/index.ejs new file mode 100644 index 0000000..1149834 --- /dev/null +++ b/htdocs/public/creations/electrode/index.ejs @@ -0,0 +1,6 @@ +<% + + res.writeHead(301, { "Location": "https://gitlab.minteck.org/minteck/electrode" }); + res.end(); + +%> \ No newline at end of file diff --git a/htdocs/public/creations/index.ejs b/htdocs/public/creations/index.ejs new file mode 100644 index 0000000..6105886 --- /dev/null +++ b/htdocs/public/creations/index.ejs @@ -0,0 +1,6 @@ +<% + + res.writeHead(301, { "Location": "https://gitlab.minteck.org/minteck" }); + res.end(); + +%> \ No newline at end of file diff --git a/htdocs/public/creations/kartik/index.ejs b/htdocs/public/creations/kartik/index.ejs new file mode 100644 index 0000000..1e272a7 --- /dev/null +++ b/htdocs/public/creations/kartik/index.ejs @@ -0,0 +1,6 @@ +<% + + res.writeHead(301, { "Location": "https://kartik.minteck.org" }); + res.end(); + +%> \ No newline at end of file diff --git a/htdocs/public/creations/neutron/index.ejs b/htdocs/public/creations/neutron/index.ejs new file mode 100644 index 0000000..75029b2 --- /dev/null +++ b/htdocs/public/creations/neutron/index.ejs @@ -0,0 +1,6 @@ +<% + + res.writeHead(301, { "Location": "https://gitlab.minteck.org/minteck/neutron" }); + res.end(); + +%> \ No newline at end of file diff --git a/htdocs/public/creations/unchained/index.ejs b/htdocs/public/creations/unchained/index.ejs new file mode 100644 index 0000000..56678a0 --- /dev/null +++ b/htdocs/public/creations/unchained/index.ejs @@ -0,0 +1,6 @@ +<% + + res.writeHead(301, { "Location": "https://unchained.minteck.org" }); + res.end(); + +%> \ No newline at end of file diff --git a/htdocs/public/creations/video/index.ejs b/htdocs/public/creations/video/index.ejs new file mode 100644 index 0000000..e41cbc4 --- /dev/null +++ b/htdocs/public/creations/video/index.ejs @@ -0,0 +1,6 @@ +<% + + res.writeHead(301, { "Location": "/" + slang + "/creations" }); + res.end(); + +%> \ No newline at end of file -- cgit