-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0d4fa4b
commit 174e83a
Showing
22 changed files
with
1,382 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
_site | ||
# _site | ||
.sass-cache | ||
.jekyll-metadata |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,131 @@ | ||
<!DOCTYPE html> | ||
<html lang="en" class="html" data-theme="dark"><head> | ||
<meta charset="utf-8" /> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
|
||
<title> | ||
|
||
🌲 johncsimon.github.io 🐦 | ||
|
||
</title> | ||
|
||
<!-- Begin Jekyll SEO tag v2.7.3 --> | ||
<meta name="generator" content="Jekyll v4.2.2" /> | ||
<meta property="og:title" content="🌲 johncsimon.github.io 🐦" /> | ||
<meta name="author" content="Abhinav Saxena" /> | ||
<meta property="og:locale" content="en_US" /> | ||
<meta name="description" content="got some downtime so how’s about we starts ourselves a blog …" /> | ||
<meta property="og:description" content="got some downtime so how’s about we starts ourselves a blog …" /> | ||
<link rel="canonical" href="https://www.abhinavsaxena.com/moonwalk/404.html" /> | ||
<meta property="og:url" content="https://www.abhinavsaxena.com/moonwalk/404.html" /> | ||
<meta property="og:site_name" content="🌲 johncsimon.github.io 🐦" /> | ||
<meta property="og:image" content="https://soopr.xyz/images/card?url=https://www.abhinavsaxena.com/moonwalk/404.html" /> | ||
<meta name="twitter:card" content="summary_large_image" /> | ||
<meta property="og:image" content="https://soopr.xyz/images/card?url=https://www.abhinavsaxena.com/moonwalk/404.html" /> | ||
<meta property="twitter:title" content="🌲 johncsimon.github.io 🐦" /> | ||
<meta name="twitter:site" content="@abhinav" /> | ||
<meta name="twitter:creator" content="@Abhinav Saxena" /> | ||
<script type="application/ld+json"> | ||
{"url":"https://www.abhinavsaxena.com/moonwalk/404.html","description":"got some downtime so how’s about we starts ourselves a blog …","author":{"@type":"Person","name":"Abhinav Saxena"},"headline":"🌲 johncsimon.github.io 🐦","@type":"WebPage","@context":"https://schema.org"}</script> | ||
<script async defer data-soopr-token="" src="https://sdk.soopr.co/soopr.js" ></script> | ||
<!-- End Jekyll SEO tag --> | ||
|
||
<link type="application/atom+xml" rel="alternate" href="https://www.abhinavsaxena.com/moonwalk/feed.xml" title="🌲 johncsimon.github.io 🐦" /> | ||
|
||
<!-- Favicon --> | ||
<link rel="apple-touch-icon" sizes="180x180" href="/assets/images/favicon/apple-touch-icon.png"> | ||
<link rel="icon" type="image/png" sizes="32x32" href="/assets/images/favicon/favicon-32x32.png"> | ||
<link rel="icon" type="image/png" sizes="16x16" href="/assets/images/favicon/favicon-16x16.png"> | ||
<link rel="manifest" href="/assets/images/favicon/site.webmanifest"> | ||
<link rel="mask-icon" href="/assets/images/favicon/safari-pinned-tab.svg" color="#5bbad5"> | ||
<link rel="shortcut icon" href="/assets/images/favicon/favicon.ico"> | ||
<meta name="msapplication-TileColor" content="#00aba9"> | ||
<meta name="msapplication-config" content="/assets/images/favicon/browserconfig.xml"> | ||
<meta name="theme-color" content="#ffffff"> | ||
<!-- Favicon --> | ||
|
||
<link rel="stylesheet" href="/assets/css/main.css" /> | ||
|
||
<script type="text/javascript"> | ||
window.addEventListener('load', themeChange); | ||
const currentTheme = localStorage.getItem('theme') ? localStorage.getItem('theme') : null; | ||
if (currentTheme) | ||
document.documentElement.setAttribute('data-theme', currentTheme); | ||
|
||
function themeChange() { | ||
let button = document.querySelector('.theme-toggle'); | ||
|
||
button.addEventListener('click', function (e) { | ||
let currentTheme = document.documentElement.getAttribute('data-theme'); | ||
if (currentTheme === 'dark') { | ||
transition(); | ||
document.documentElement.setAttribute('data-theme', 'light'); | ||
localStorage.setItem('theme', 'light'); | ||
} else { | ||
transition(); | ||
document.documentElement.setAttribute('data-theme', 'dark'); | ||
localStorage.setItem('theme', 'dark'); | ||
} | ||
}); | ||
|
||
let transition = () => { | ||
document.documentElement.classList.add('transition'); | ||
window.setTimeout(() => { | ||
document.documentElement.classList.remove('transition'); | ||
}, 1000); | ||
} | ||
} | ||
</script> | ||
|
||
|
||
|
||
</head> | ||
<body> | ||
<main class="page-content" aria-label="Content"> | ||
<div class="w"> | ||
<style type="text/css" media="screen"> | ||
.container { | ||
margin: 10px auto; | ||
max-width: 600px; | ||
text-align: center; | ||
} | ||
h1 { | ||
margin: 30px 0; | ||
font-size: 4em; | ||
line-height: 1; | ||
letter-spacing: -1px; | ||
} | ||
</style> | ||
|
||
<div class="container"> | ||
<h1>404</h1> | ||
|
||
<p><strong>Page not found :(</strong></p> | ||
<p>The requested page could not be found.</p> | ||
</div> | ||
|
||
|
||
<button title="Toggle Theme" class="theme-toggle"> | ||
<svg viewBox="0 0 32 32" width="24" height="24" fill="currentcolor"> | ||
<circle cx="16" cy="16" r="14" fill="none" stroke="currentcolor" stroke-width="4"></circle> | ||
<path d=" | ||
M 16 0 | ||
A 16 16 0 0 0 16 32 | ||
z"> | ||
</path> | ||
</svg> | ||
</button> | ||
|
||
|
||
<div class="credits">© 2025 Abhinav Saxena | ||
| ||
• | ||
Powered by <a href="https://www.soopr.co" target="_blank" rel="noreferrer">Soopr</a> | ||
| ||
• | ||
Theme <a href="https://github.com/abhinavs/moonwalk" target="_blank" rel="noreferrer">Moonwalk</a> | ||
</div> | ||
</div> | ||
</main><script async defer src="https://sdk.soopr.co/soopr.js"></script></body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<p>I’m a software dev with Go, Javascript and C#. I’m writing this blog to better at writing and to document my explorations.</p> |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.