mirror of
https://github.com/Kyren223/website.git
synced 2026-08-29 12:41:30 +00:00
Committing in case I fuck up smthing
This commit is contained in:
BIN
src/pages/.test.astro.swp
Normal file
BIN
src/pages/.test.astro.swp
Normal file
Binary file not shown.
13
src/pages/test.astro
Normal file
13
src/pages/test.astro
Normal 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>
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user