index.html
1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 6 <title>Redirecting...</title> 7 <style> 8 body { 9 background: #1d1d1d; 10 color: #fff; 11 } 12 </style> 13 <meta http-equiv="refresh" content="0; url=/home"> 14 </head> 15 16 <body> 17 Redirecting... 18 <br /> 19 If you don't get redirected, click <a href="/home">here.</a> 20 <br /> 21 <a href="/about">Learn about Auride</a> 22 </body> 23 </html>