Skip to content

Commit

Permalink
Publishing to gh-pages (bin/publish)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasmazza committed Jul 23, 2024
1 parent 7b322a6 commit d44ff3c
Show file tree
Hide file tree
Showing 54 changed files with 6,516 additions and 3,113 deletions.
153 changes: 153 additions & 0 deletions 404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,153 @@
<!DOCTYPE html>
<html lang="en-us"
dir="ltr">

<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width"><meta name="description" content="" />

<title>

404 Page not found | Lucas Mazza

</title>

<link rel="canonical" href="https://lucasmazza.website/404.html" />












<link rel="stylesheet" href="/assets/combined.min.52abaa1c566a5f26056218d5d2c41964dedac454973c4708d8fd787ebe241064.css" media="all">






</head>







<body class="light">

<div class="content">
<header>


<div class="header">



<h1 class="header-title">Lucas Mazza</h1>

<div class="flex">




<p class="small ">
<a href="/">
/home
</a>
</p>

<p class="small ">
<a href="/posts">
/posts
</a>
</p>

<p class="small ">
<a href="/talks">
/talks
</a>
</p>

<p class="small ">
<a href="/about">
/about
</a>
</p>


</div>



</div>
</header>

<main class="main">


<div class="not-found">

<div>
<h1> typo? </h1>
<p> Click <a href="/"> here </a> to return to home </p>
</div>

</div>


</main>
</div>

<footer>
<p>Powered by
<a href="https://gohugo.io/">Hugo</a>
and
<a href="https://github.com/tomfran/typo">tomfran/typo</a>
</p>


</footer>

</body>

<script>

function isAuto() {
return document.body.classList.contains("auto");
}

function setTheme() {
if (!isAuto()) {
return
}

document.body.classList.remove("auto");
let cls = "light";
if (window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches) {
cls = "dark";
}

document.body.classList.add(cls);
}

function invertBody() {
document.body.classList.toggle("dark");
document.body.classList.toggle("light");
}

if (isAuto()) {
window.matchMedia('(prefers-color-scheme: dark)').addListener(invertBody);
}

setTheme();

</script>

</html>
Loading

0 comments on commit d44ff3c

Please sign in to comment.