Welcome to my new blog powered by Eleventy! This is a sample post to demonstrate how you can write blog content using Markdown.
Features of Markdown
Markdown makes it easy to format your content:
- Bold text for emphasis
- Italic text for subtle emphasis
- Lists like this one
- Links to other websites
- Code snippets:
// This is a JavaScript code block
function greet(name) {
return `Hello, ${name}!`;
}
console.log(greet('World'));
Adding Images
You can add images to your posts by placing them in the img folder and referencing them like this:

Next Steps
To create new blog posts, simply add new Markdown files to the posts directory with the proper frontmatter at the top (like this file has).
Enjoy your new Eleventy blog!