aboutsummaryrefslogtreecommitdiff
path: root/zola-static/content/blog/first.md
blob: ed88f5c872b62f52029e5b9adfeab631786f81c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
+++
title = "My first post"
date = 2025-05-11
+++

This is my first blog post.

### Code block test
```c++
#include <iostream>

int main() {
	std::cout << "hello world" << std::endl;
}
```