35 lines
704 B
Markdown
35 lines
704 B
Markdown
---
|
|
title: Your Post Title
|
|
date: 2025-10-21
|
|
tags: [Web Development, TypeScript]
|
|
excerpt: A brief summary of your post (2-3 sentences). This will appear in post listings and search results.
|
|
draft: false
|
|
---
|
|
|
|
# Your Post Title
|
|
|
|
Your content here. You can use standard markdown syntax:
|
|
|
|
## Section Heading
|
|
|
|
Write your paragraphs with proper spacing.
|
|
|
|
### Subsection
|
|
|
|
- Bullet points
|
|
- Another point
|
|
- And another
|
|
- with HMR
|
|
|
|
**Bold text** and *italic text* are supported.
|
|
|
|
```typescript
|
|
// Code blocks work too
|
|
const example = "Hello World";
|
|
console.log(example);
|
|
```
|
|
|
|
> Blockquotes for important callouts or quotes.
|
|
|
|
This is just a template - delete this file or ignore it when writing your actual posts.
|