diff options
author | David Luevano Alvarado <david@luevano.xyz> | 2021-03-15 19:55:21 -0700 |
---|---|---|
committer | David Luevano Alvarado <david@luevano.xyz> | 2021-03-15 19:55:21 -0700 |
commit | 17dc30770756a32a11507f1e81e5b7ce94b7c046 (patch) | |
tree | 82461b3376c2293ebd64c1691a7a3547f6a5d346 /luevano | |
parent | 7c31d84f9450aca3b366a556db85bdd494fff2f9 (diff) |
Add new entries and reflect updated blog (now with timestamps!)
Diffstat (limited to 'luevano')
-rw-r--r-- | luevano/404.html | 78 |
1 files changed, 70 insertions, 8 deletions
diff --git a/luevano/404.html b/luevano/404.html index 81047f1..1347a7c 100644 --- a/luevano/404.html +++ b/luevano/404.html @@ -1,15 +1,63 @@ <!DOCTYPE html> <html lang="en"> <head> - <link rel="stylesheet" type="text/css" href="https://static.luevano.xyz/css/style.css"> - <link rel="icon" href="https://static.luevano.xyz/images/icons/dragon.svg"> + <script type="text/javascript" src="https://static.luevano.xyz/scripts/theme.js"></script> + + <link rel="stylesheet" type="text/css" href="https://static.luevano.xyz/fa/css/all.min.css"> + <link id="theme-css" rel="stylesheet" type="text/css" href="https://static.luevano.xyz/css/dark.css"> + <link rel="stylesheet" type="text/css" href="https://static.luevano.xyz/css/general_style.css"> + + <link rel="icon" href="https://static.luevano.xyz/fa/svgs/solid/dragon.svg"> <meta charset="utf-8"> <title>404 Not found</title> </head> <body> - <a href="https://luevano.xyz/">[HOME]</a> + <div id="theme-switcher-container"> + <i class="fas fa-sun"></i> + <label class="switch theme"> + <input id="theme-switch" type="checkbox" onclick="toggleTheme()"> + <span class="slider round"></span> + </label> + <i class="fas fa-moon"></i> + </div> + + <header> + <ul class="menubar"> + <li> + <a href="https://luevano.xyz/"><i class="fas fa-home" alt="Home"></i><span>Home</span></a> + </li> + + <li> + <a href="https://blog.luevano.xyz/"><i class="fas fa-book-open" alt="Blog"></i><span>Blog</span></a> + </li> + + <li><i class="fab fa-git" alt="Git"></i><span>Git</span> + <ul> + <li><a href="https://git.luevano.xyz/" target="_blank"><i class="fab fa-git-alt" alt="Git-alt"></i></a></li> + + <li><a href="https://github.com/luevano" target="_blank"><i class="fab fa-github" alt="Github"></i></a></li> + + <li><a href="https://gitlab.com/dluevano" target="_blank"><i class="fab fa-gitlab" alt="Gitlab"></i></a></li> + </ul> + </li> + + <li><i class="fas fa-box-open" alt="Stuff"></i><span>Stuff</span> + <ul> + <li><a href="https://gb.luevano.xyz/"><i class="fas fa-gamepad" alt="Gameboy"></i><span>Gameboy</span></a></li> + </ul> + </li> + + <li> + <a href="https://luevano.xyz/donate"><i class="fas fa-donate" alt="Donate"></i><span>Donate</span></a> + <ul> + <li><a href="https://paypal.me/dlvna"><i class="fab fa-paypal" alt="Paypal"></i><span>Paypal</span></a></li> + </ul> + </li> + </ul> + </nav> + </header> <div class="not-found"> <h1> @@ -21,11 +69,25 @@ <p> Hey, it looks like the page you are looking for does not exist. </p> + </div> + <footer class="footer"> + <i class="fas fa-envelope" alt="Email"></i> + Email + <a href="mailto:david@luevano.xyz"> + david@luevano.xyz + </a> + <br> - <p> - Try going back. - </p> + <i class="fas fa-rss" alt="RSS"></i> + RSS + <a href="https://blog.luevano.xyz/rss.xml"> + https://blog.luevano.xyz/rss.xml + </a> + <br> - <a href="https://luevano.xyz/">[HOME]</a> - </div> + <i class="fas fa-donate" alt="Donate"></i> + <a href="https://luevano.xyz/donate">Donate</a> + <a href="https://paypal.me/dlvna"><i class="fab fa-paypal" alt="Paypal"></i></a> + </footer> </body> +</html> |