diff options
Diffstat (limited to '404.html')
| -rw-r--r-- | 404.html | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -5,7 +5,9 @@ <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>s1nical - 404</title> - <link rel="stylesheet" href="404/css/main.css"> + <link rel="stylesheet" href="/404/css/main.css"> + <!-- Why am I so dumb, I just found why the css wasn't working on the 404 with a trailing slash on Stack Overflow, lol, then I + went through, through ALL of the files checking if I had any more "./" instead of absolute path and turns out this is the only file I didn't go through...--> <script src="https://code.jquery.com/jquery-1.10.2.js"></script> </head> <body> @@ -17,7 +19,7 @@ <div class="torch"></div> - <script src="404/js/main.js"></script> + <script src="/404/js/main.js"></script> </body> </html> |