Welcome to Your New Blog!

This is a sample blog post to demonstrate how content appears in this template. Markdown blog posts are stored in the _posts directory and follow the naming convention of YYYY-MM-DD-title.md.

Markdown Features

Markdown is a lightweight markup language that you can use to add formatting elements to plaintext text documents. Created in 2004, Markdown is now one of the world’s most popular markup languages.

Headings

You can create headings using hash symbols:

# Heading 1
## Heading 2
### Heading 3

Text Formatting

You can easily format text as bold or italic:

**bold text**
*italicized text*

Lists

Ordered lists:

  1. First item
  2. Second item
  3. Third item

Unordered lists:

  • First item
  • Second item
  • Third item

You can create links like this:

[link text](URL)

Images

Adding images is simple:

Sample Image

The syntax is:

![Alt text](/path/to/image.jpg)

Code

You can highlight code with backticks:

function helloWorld() {
  console.log("Hello, world!");
}

Next Steps

To continue customizing your blog:

  1. Edit the templates in the _layouts directory
  2. Modify the styles in the css directory
  3. Create new posts in the _posts directory

Happy blogging!