Folder Structure
├── content
│ └── en
│ └── blog
├── static
│ ├── manifest.json
│ └── sw.js
├── hugo.yaml
└── themes
└── E25DXInitialize the Blog
Add
content/en/blog/_index.md--- cascade: isBlog: true ---TipThis helps to change the labels of back navigation; “All Blog Posts”
Add
content/en/blog/2026_6_1_hello_world/index.md--- title: Hello World slug: "hello-world" publishDate: 2026-06-28T00:00:00+08:00 summary: Hello World Summary --- Hello World/ Any MarkdownTip- Update the
publishDateaccordingly. - You can use any folder name or direct file name
hello-world.md(If you are not using any cover image)
- Update the
Add any image of png (or jpg) for
content/en/blog/2026_6_1_hello_world/cover.pngas the blog post cover image.