
Building This Site with Zola
A demonstration post showing the content features supported by this website.
Table of contents
This demonstration post exercises the content features used throughout the blog: colocated images, syntax-highlighted code, tables, and tags.
Colocated images
Images that belong to one post live beside its index.md file and use ordinary relative Markdown paths.
Syntax-highlighted code
Fenced code blocks declare their language so Zola can highlight them during the build.
fn main() {
let generator = "Zola";
println!("Built with {generator}");
}Markdown tables
| Layer | Responsibility |
|---|---|
| Markdown | Content and frontmatter |
| Tera | Page structure and reusable components |
| Tailwind CSS | Layout and low-level utilities |
| daisyUI | Theme-aware interface components |
Keeping these responsibilities separate makes the generated site easier to maintain.
