diff options
author | Minteck <contact@minteck.org> | 2021-12-04 13:14:41 +0100 |
---|---|---|
committer | Minteck <contact@minteck.org> | 2021-12-04 13:14:41 +0100 |
commit | dbbc2d3692acaf0c3e54647a0b5fc4d03f5d79c3 (patch) | |
tree | fc1ef63efc15ac1e8c0e49ab9b1b3d296a67ed82 /htdocs/public/creations | |
parent | e618c3f52c1c4ae161650679cda24eecbba579bb (diff) | |
download | rainbow-dbbc2d3692acaf0c3e54647a0b5fc4d03f5d79c3.tar.gz rainbow-dbbc2d3692acaf0c3e54647a0b5fc4d03f5d79c3.tar.bz2 rainbow-dbbc2d3692acaf0c3e54647a0b5fc4d03f5d79c3.zip |
New stuff
Diffstat (limited to 'htdocs/public/creations')
-rw-r--r-- | htdocs/public/creations/dev/index.ejs | 6 | ||||
-rw-r--r-- | htdocs/public/creations/electrode/index.ejs | 6 | ||||
-rw-r--r-- | htdocs/public/creations/index.ejs | 6 | ||||
-rw-r--r-- | htdocs/public/creations/kartik/index.ejs | 6 | ||||
-rw-r--r-- | htdocs/public/creations/neutron/index.ejs | 6 | ||||
-rw-r--r-- | htdocs/public/creations/unchained/index.ejs | 6 | ||||
-rw-r--r-- | htdocs/public/creations/video/index.ejs | 6 |
7 files changed, 42 insertions, 0 deletions
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 |