Committing in case I fuck up smthing

This commit is contained in:
2024-11-10 14:24:12 +02:00
parent cc21abd0ae
commit cb22942618
11 changed files with 1730 additions and 35 deletions

BIN
src/pages/.test.astro.swp Normal file

Binary file not shown.

13
src/pages/test.astro Normal file
View File

@@ -0,0 +1,13 @@
---
import Prose from '../components/Prose.astro';
import MarkdownLayout from '../layouts/MarkdownLayout.astro';
import { getEntry } from 'astro:content';
const entry = await getEntry('blogs', 'blog-1');
const { Content } = await entry.render();
---
<MarkdownLayout title='HMMMMM'>
<Prose>
<Content />
</Prose>
</MarkdownLayout>

View File

@@ -1,30 +0,0 @@
# My Title
Testing some content with multiline thing
let's see what happens if this wraps
This should be super close
This should be far
- Some bullets
- Adka kda kd ak
- d kakd akd ka k
- [ ] Check me
- [x] Already checked
## Smaller header
How about code blocks
```go
package main
import "fmt"
func main() {
fmt.Println("Hello, World!")
}
```
Hmm