Hello World: My First Zola Post
Table of Contents
A sample post demonstrating syntax highlighting, typography, and Zola features.
Introduction
Welcome to my new blog! This site is built with Zola and the Tabi theme.
This is a sample post to verify that:
- Syntax highlighting works.
- The
post.htmltemplate renders correctly. - 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:
- First item
- Second item
- Third item
Unordered list:
- Apple
- Banana
- Cherry
Thanks for reading!