jtgis

Blog Admin

Blog Statistics

Total Posts: Loading...
Total Tags: Loading...
Longest Post: Loading...
All Tags: Loading...

All Posts:

Loading current posts...

Create New Post

Create New Post on GitHub

Post Template:

---
title: "Your Post Title Here"
date: "2025-09-20"
tags: ["category1", "category2"]
image: "https://images.unsplash.com/photo-1486312338219-ce68d2c6f44d"
embed: "https://www.youtube.com/watch?v=dQw4w9WgXcQ"
embedType: "youtube"
---

# Your Main Heading

Write your post content here using **Markdown**!

You can use:
- **Bold text**
- *Italic text* 
- [Links](https://example.com)
- `inline code`
- Images: ![Alt text](https://example.com/image.jpg)

## Video Embeds

For YouTube videos, use:
```
embed: "https://www.youtube.com/watch?v=VIDEO_ID"
embedType: "youtube"
```

For Vimeo videos, use:
```
embed: "https://vimeo.com/VIDEO_ID"
embedType: "vimeo"
```

For Spotify content, use:
```
embed: "https://open.spotify.com/episode/EPISODE_ID"
embedType: "spotify"
```

## Code Blocks

```javascript
// Code blocks work too
function hello() {
    console.log("Hello world!");
}
```

## Lists and More

1. Numbered lists
2. Work great too

- Bullet points
- Are also supported