Compare commits

...

2 commits

Author SHA1 Message Date
fd181f8486
Update and fix identation 2024-05-04 18:42:55 +02:00
46eacab857
Set encoding 2024-05-04 18:41:45 +02:00
2 changed files with 21 additions and 19 deletions

View file

@ -36,18 +36,19 @@ if [ -z "${LINKGEN_NO_DEFAULT}" ]; then
cat << EOF >> index.html cat << EOF >> index.html
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<title>Redirecting to nowhere</title> <title>Redirecting to nowhere</title>
</head> <meta charset="UTF-8"/>
<body> </head>
<center> <body>
<p>Hello! You've landed on StarOpenSource's redirection website.</p> <center>
<p>You can visit the source code for this website <a href="/repos-redirector">here</a>.</p> <p>Hello! You've landed on StarOpenSource's redirection website.</p>
<br/> <p>You can visit the source code for this website <a href="/repos-redirector">here</a>.</p>
<p>Here are some links you can try out:</p> <br/>
<p><a href="/website">[website]</a> <a href="/status">[status]</a> <a href="/filesystem">[/fs/]</a> <a href="/repos">[repos]</a></p> <p>Here are some links you can try out:</p>
</center> <p><a href="/website">[website]</a> <a href="/status">[status]</a> <a href="/filesystem">[/fs/]</a> <a href="/repos">[repos]</a></p>
</body> </center>
</body>
</html> </html>
EOF EOF
# Robots # Robots

View file

@ -1,10 +1,11 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<title>Redirecting to _TITLE_</title> <title>Redirecting to _TITLE_</title>
<meta http-equiv="refresh" content="0; url=_RDURL_"/> <meta charset="UTF-8"/>
</head> <meta http-equiv="refresh" content="0; url=_RDURL_"/>
<body> </head>
<p>Redirecting to <a href="_RDURL_">_TITLE_</a> (<a href="_RDURL_">_RDURL_</a>)</p> <body>
</body> <p>Redirecting to <a href="_RDURL_">_TITLE_</a> (<a href="_RDURL_">_RDURL_</a>)</p>
</body>
</html> </html>