64 lines
1.4 KiB
Text
64 lines
1.4 KiB
Text
---
|
|
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";
|
|
---
|
|
|
|
<!doctype html>
|
|
<html lang="en">
|
|
<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;
|
|
}
|
|
p{
|
|
text-align: left;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<Header />
|
|
|
|
<main>
|
|
<h1>Rolf Glomsrud</h1>
|
|
<img src="images/self.png" />
|
|
|
|
<h3>Hello!</h3>
|
|
<p>Welcome to my little corner of the interwebs, glad to have you!</p>
|
|
|
|
<p>This site is a little project of mine where is hope to share my adventures both on and off line.</p>
|
|
|
|
<p>Here are some useful links to my stuff:</p>
|
|
<ul>
|
|
<li>
|
|
<p>I self host my code online using Forgejo! <a href="https://code.polsevev.dev">code.polsevev.dev</a></p>
|
|
</li>
|
|
<li>
|
|
<p>I document my homelab! <a href="/homelab">/homelab</a></p>
|
|
</li>
|
|
</ul>
|
|
|
|
</main>
|
|
<Footer />
|
|
</body>
|
|
</html>
|