2024-08-02 20:52:09 +00:00
|
|
|
---
|
2024-08-23 18:36:08 +00:00
|
|
|
import BaseHead from "../components/BaseHead.astro";
|
|
|
|
import Header from "../components/Header.astro";
|
|
|
|
import Footer from "../components/Footer.astro";
|
|
|
|
import { SITE_TITLE, SITE_DESCRIPTION } from "../consts";
|
2024-08-02 20:52:09 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
2024-08-23 18:36:08 +00:00
|
|
|
<head>
|
|
|
|
<BaseHead title={SITE_TITLE} description={SITE_DESCRIPTION} />
|
|
|
|
<style>
|
|
|
|
body {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
main {
|
|
|
|
}
|
|
|
|
main left,
|
|
|
|
right {
|
|
|
|
margin: 0.2em;
|
|
|
|
padding: 0.5em;
|
|
|
|
}
|
|
|
|
left {
|
|
|
|
max-width: 600px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
right {
|
|
|
|
max-width: 400px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
box {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<Header />
|
|
|
|
|
|
|
|
<main>
|
|
|
|
<h1>Rolf Glomsrud</h1>
|
|
|
|
<img src="images/self.png" />
|
2024-08-23 18:38:34 +00:00
|
|
|
<a href="/homelab">
|
|
|
|
<p>Click here to read posts about my homelab!</p>
|
|
|
|
</a>
|
2024-08-23 18:36:08 +00:00
|
|
|
<p>
|
|
|
|
This site is a continual WIP, and this is just an alpha of what i hope
|
|
|
|
it will become :)
|
|
|
|
</p>
|
2024-08-23 18:38:34 +00:00
|
|
|
<p>I currently spend most my time either working, playing Magic the Gathering or working on my homelab</p>
|
|
|
|
|
2024-08-23 18:36:08 +00:00
|
|
|
</main>
|
|
|
|
<Footer />
|
|
|
|
</body>
|
2024-08-02 20:52:09 +00:00
|
|
|
</html>
|