Hello World: My First Zola Post

Introduction

Welcome to my new blog! This site is built with Zola and the Tabi theme.

This is a sample post to verify that:

  1. Syntax highlighting works.
  2. The post.html template renders correctly.
  3. Typography looks good.

Code Highlighting

Since we are using Zola, let's look at some Rust code:

fn main() {
    let blog_name = "Carlo's Blog";
    println!("Welcome to {}!", blog_name);
}

And here is some JavaScript for good measure:

document.addEventListener('DOMContentLoaded', () => {
    console.log('The DOM is ready!');
});

Typography Test

Here is a blockquote:

"Simplicity is the soul of efficiency." — Austin Freeman

Lists

Ordered list:

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

Unordered list:

  • Apple
  • Banana
  • Cherry

Thanks for reading!