title:
Welcome to My Blog
description:
An introduction to this new blog built with Eleventy
date:
2024-01-15T00:00:00.000Z
tags:
welcome
eleventy
blogging
featured:
true

Welcome to my new blog! This is the first post on a site built with Eleventy, a fantastic static site generator.

Why Eleventy?

I chose Eleventy for several reasons:

  • Simple and fast - No complex build processes
  • Flexible - Works with multiple template languages
  • Zero-config - Works out of the box
  • Performance - Generates fast, static HTML

What to Expect

On this blog, you can expect to find posts about:

  • Web development
  • Technology trends
  • Programming tutorials
  • Personal projects

Getting Started

This blog supports:

  • Markdown for writing posts
  • Syntax highlighting for code
  • Tags and categories
  • RSS feeds
  • Responsive design

Thanks for visiting, and I hope you enjoy the content!

// Here's some sample code with syntax highlighting function welcomeMessage(name) { return `Welcome to the blog, ${name}!`; } console.log(welcomeMessage("reader"));