diff options
| author | s1n <[email protected]> | 2019-11-03 16:10:40 -0800 |
|---|---|---|
| committer | s1n <[email protected]> | 2019-11-03 16:10:40 -0800 |
| commit | f798070a6a8c601eb68797e9a61b66c139edb08d (patch) | |
| tree | 63e0a1d0ee87004030958b2c64c619c0e372247b | |
| parent | make ip detection look nice (diff) | |
| download | s1n.pw-admin-f798070a6a8c601eb68797e9a61b66c139edb08d.tar.xz s1n.pw-admin-f798070a6a8c601eb68797e9a61b66c139edb08d.zip | |
fix ip detec title
| -rw-r--r-- | favicon-grabber/index.html | 84 | ||||
| -rw-r--r-- | ip-detection/index.html | 2 |
2 files changed, 85 insertions, 1 deletions
diff --git a/favicon-grabber/index.html b/favicon-grabber/index.html index e69de29..0ab708f 100644 --- a/favicon-grabber/index.html +++ b/favicon-grabber/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<html lang="en"> + + <head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <meta http-equiv="X-UA-Compatible" content="ie=edge"> + <title>s1nical - 404</title> + <!-- External Links --> + <script src="https://cdnjs.cloudflare.com/ajax/libs/trianglify/0.3.1/trianglify.min.js"></script> + <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script> + <script src="https://code.jquery.com/jquery-1.10.2.js"></script> + <!-- CSS Links --> + <!-- Why am I so dumb, I just found out why the css wasn't working on the 404 with a trailing slash on Stack Overflow, lol, then I + went 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...--> + <link rel="stylesheet" href="/about/css/main.css"> + <link rel="stylesheet" href="/about/css/navigation-bar.css"> + <link rel="stylesheet" href="/about/css/loader-animation.css"> + <link rel="stylesheet" href="/about/css/blog-slider.css"> + <link rel="stylesheet" href="/404/css/main.css"> + <!-- Invisible Links --> + <script src="/js/loader-animation.js"></script> + <script src="/js/refresh-on-media.js"></script> + </head> + + <body> + <!-- Visable Links --> + <script src="/js/background-sparkles.js"></script> + + <!-- Navigation Bar --> + <div class="navigation-bar"> + <nav class="nav"> + <a href="/" class="nav-item" active-color="orange">Home</a> + <!-- Had `is-active` after it but removed it due to not highlighting. --> + <a href="/about/" class="nav-item" active-color="green">About</a> <!-- About --> + <a href="https://p.s1n.pw/" class="nav-item" active-color="blue">Portfolio</a> <!-- Testimonials --> + <!--<a href="/doge" class="nav-item" active-color="red">Doge</a> <!-- Blog --> + <!--<a href="/cars/" class="nav-item" active-color="rebeccapurple">Cars</a> <!-- Contact --> + <!--<a href="https://nani.s1n.pw" class="nav-item" active-color="rebeccapurple">Nani?!</a>--> + <span class="nav-indicator"></span> + </nav> + </div> + + <div class="bio"> + <div class="links"> + <div class="blog-slider"> + <div class="content" style="text-align: center;"> + <h1>404</h1> + <h2>Page not found</h2> + <h1> + <!-- Filler --> + </h1> + <a class="mobile" href="/">Back home</a> + <h1 class="mobile"> + <!-- Filler --> + </h1> + </div> + </div> + </div> + </div> + + <!-- Loading Animation --> + <div class="loader-wrapper"> + <div class="loader"> + <row> + <span></span> + <span></span> + <span></span> + </row> + <row> + <span></span> + <span></span> + <span></span> + </row> + <row> + <span></span> + <span></span> + <span></span> + </row> + </div> + </div> + </body> + +</html> diff --git a/ip-detection/index.html b/ip-detection/index.html index a3e9201..7af5fd5 100644 --- a/ip-detection/index.html +++ b/ip-detection/index.html @@ -5,7 +5,7 @@ <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> - <title>s1nical - 404</title> + <title>s1nical - IP Detection</title> <!-- External Links --> <script src="https://cdnjs.cloudflare.com/ajax/libs/trianglify/0.3.1/trianglify.min.js"></script> <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script> |