+1
-1
src/layouts/Layout.astro
+1
-1
src/layouts/Layout.astro
+35
src/layouts/Post.astro
+35
src/layouts/Post.astro
···
···
1
+
---
2
+
const { title = "Skittr Blog", description = "A nostalgic Bluesky client.", frontmatter } = Astro.props;
3
+
---
4
+
5
+
<!DOCTYPE html>
6
+
<html lang="en">
7
+
<head>
8
+
<title>{frontmatter.title} - {title}</title>
9
+
<meta charset="UTF-8" />
10
+
<meta name="author" content="lime360" />
11
+
<meta name="viewport" content="width=device-width,initial-scale=1" />
12
+
<meta name="theme-color" content="#9ae4e8" />
13
+
<meta name="description" content={description} />
14
+
<meta property="og:title" content={title} />
15
+
<meta property="og:description" content={description} />
16
+
<link rel="stylesheet" href="../styles.css" />
17
+
<link rel="shortcut-icon" href="../favicon.ico" />
18
+
<link rel="apple-touch-icon" href="../twitter_57.png" />
19
+
<meta name="generator" content={Astro.generator} />
20
+
</head>
21
+
<body>
22
+
<header>
23
+
<img src="../skittr.png" alt="Skittr Logo" style="width: 150px; height: auto;" />
24
+
</header>
25
+
<main>
26
+
<h1>{frontmatter.title}</h1>
27
+
<small>{frontmatter.date.toString().slice(0,10)} - by {frontmatter.author}</small>
28
+
<slot />
29
+
</main>
30
+
<hr />
31
+
<footer>
32
+
<a href="https://yoyle.city">made by fizzylimesoda</a>
33
+
</footer>
34
+
</body>
35
+
</html>
+10
src/pages/posts/hello-world.md
+10
src/pages/posts/hello-world.md
···
···
1
+
---
2
+
layout: ../../layouts/Post.astro
3
+
title: "Hello World!"
4
+
date: 2026-01-03
5
+
author: "fizzylimesoda"
6
+
---
7
+
# Hello World!
8
+
We have decided to start a development log for Skittr because, well, we felt like it lol.
9
+
10
+
You can [follow us on Bluesky](https://bsky.app/profile/skittr.lol) for more updates!