aboutsummaryrefslogtreecommitdiff
path: root/zola-static/content/blog/first.md
diff options
context:
space:
mode:
Diffstat (limited to 'zola-static/content/blog/first.md')
-rw-r--r--zola-static/content/blog/first.md9
1 files changed, 9 insertions, 0 deletions
diff --git a/zola-static/content/blog/first.md b/zola-static/content/blog/first.md
index f0f068f..ed88f5c 100644
--- a/zola-static/content/blog/first.md
+++ b/zola-static/content/blog/first.md
@@ -4,3 +4,12 @@ date = 2025-05-11
+++
This is my first blog post.
+
+### Code block test
+```c++
+#include <iostream>
+
+int main() {
+ std::cout << "hello world" << std::endl;
+}
+```