mirror of
https://codeberg.org/vlw/victorwesterlund.com.git
synced 2025-09-14 03:23:41 +02:00
57 lines
1.9 KiB
HTML
Executable file
57 lines
1.9 KiB
HTML
Executable file
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<title>Victor Westerlund</title>
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<meta name="description" content="Full-stack web developer from Stockholm, Sweden.">
|
||
<meta name="theme-color" content="#000000">
|
||
<meta property='og:title' content='Victor Westerlund'>
|
||
<meta property='og:image' content='//victorwesterlund.com/assets/media/banner.jpg'>
|
||
<meta property='og:description' content='Full-stack web developer from Stockholm, Sweden.'>
|
||
<meta property='og:url' content='https://victorwesterlund.com'>
|
||
<link rel="icon" href="assets/media/favicon-dark.png" media="(prefers-color-scheme:no-preference)">
|
||
<link rel="icon" href="assets/media/favicon-dark.png" media="(prefers-color-scheme:light)">
|
||
<link rel="icon" href="assets/media/favicon-light.png" media="(prefers-color-scheme:dark)">
|
||
<link rel="stylesheet" href="assets/css/style.css">
|
||
<style>
|
||
:root {
|
||
--primer-color-base: 0, 0, 0;
|
||
--primer-color-contrast: 255, 255, 255;
|
||
}
|
||
|
||
html {
|
||
height: -webkit-fill-available;
|
||
background-size: cover;
|
||
background-position: 50% 50%;
|
||
}
|
||
|
||
body {
|
||
margin: 0;
|
||
height: 100%;
|
||
justify-content: center;
|
||
background-color: rgba(0, 0, 0, .7);
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<section>
|
||
<h1>Oh, I’m in the wrong place, man!</h1>
|
||
<p>404 - Not Found</p>
|
||
</section>
|
||
<div class="spacer"><div></div></div>
|
||
<section>
|
||
<h1></h1>
|
||
<a href="/">
|
||
<div class="button phantom">
|
||
<p>Get me out of here!</p>
|
||
</div>
|
||
</a>
|
||
</section>
|
||
<script type="module">
|
||
import { default as Glitch } from "./assets/js/glitch/Glitch.mjs";
|
||
|
||
window.glitch = new Glitch(document.body.parentElement);
|
||
</script>
|
||
</body>
|
||
</html>
|