Skip to content

Commit

Permalink
Blah
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnCSimon committed Feb 9, 2025
1 parent 65fcf86 commit b1372fc
Show file tree
Hide file tree
Showing 10 changed files with 1,104 additions and 0 deletions.
103 changes: 103 additions & 0 deletions docs/404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,103 @@
<!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.1 -->
<meta name="generator" content="Jekyll v4.1.1" />
<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 name="twitter:card" content="summary" />
<meta property="twitter:title" content="🌲 johncsimon.github.io 🐦" />
<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 …","headline":"🌲 johncsimon.github.io 🐦","author":{"@type":"Person","name":"Abhinav Saxena"},"@type":"WebPage","@context":"https://schema.org"}</script>
<!-- End Jekyll SEO tag -->

<link type="application/atom+xml" rel="alternate" href="https://www.abhinavsaxena.com/moonwalk/feed.xml" title="🌲 johncsimon.github.io 🐦" />

<link rel="shortcut icon" type="image/x-icon" href="/./logo.png" />
<link rel="stylesheet" href="https://www.abhinavsaxena.com/moonwalk/assets/css/main.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/turbolinks/5.2.0/turbolinks.js" defer></script>
<script type="text/javascript">
document.addEventListener('turbolinks:load', themeChange);
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');
} else {
transition();
document.documentElement.setAttribute('data-theme', 'dark');
}
});

// Adds the 'transition' class to <html> for CSS fun
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>
</main>



</body>
</html>
1 change: 1 addition & 0 deletions docs/about/index.html
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>
3 changes: 3 additions & 0 deletions docs/assets/css/main.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions docs/assets/css/main.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit b1372fc

Please sign in to comment.