My First Blog Post

Introduction
Quarto
A short summary of the post visible on the listing page.
Author

Your Name

Published

March 15, 2024

Introduction

This is my first post on my new Quarto blog! Quarto makes it easy to create content like this.

Code Example

You can include code blocks:

```python def greet(name): print(f”Hello, {name}!“)

greet(“World”)