aboutsummaryrefslogtreecommitdiff
path: root/zola-static/content/blog/first/index.md
diff options
context:
space:
mode:
authorJack Jamison <jackqjamison@gmail.com>2025-12-26 18:48:58 -0500
committerJack Jamison <jackqjamison@gmail.com>2025-12-26 18:48:58 -0500
commitfad3843b2ba6176a4c0834b66e27584fcf7aed17 (patch)
tree5e53bf449392605d78912b620b22273a950c1516 /zola-static/content/blog/first/index.md
parentbe3a5f44a4eba7ca68839e1456553d5cc7399395 (diff)
move articles to directories
Diffstat (limited to 'zola-static/content/blog/first/index.md')
-rw-r--r--zola-static/content/blog/first/index.md18
1 files changed, 18 insertions, 0 deletions
diff --git a/zola-static/content/blog/first/index.md b/zola-static/content/blog/first/index.md
new file mode 100644
index 0000000..bfed8ba
--- /dev/null
+++ b/zola-static/content/blog/first/index.md
@@ -0,0 +1,18 @@
++++
+title = "My First Article"
+date = 2025-05-11
+updated = 2025-05-12
++++
+
+This is my first blog post. I am using this post to learn how to configure my site and its style.
+
+> This article is going to be weird, and use a lot of features.
+
+### Code block test
+```c++,name=main.cpp
+#include <iostream>
+
+int main() {
+ std::cout << "hello world" << std::endl;
+}
+```