Add Our First Blog Posts

Folder Structure
├── content
│   └── en
│       └── blog
├── static
│   ├── manifest.json
│   └── sw.js
├── hugo.yaml
└── themes
    └── E25DX

Initialize the Blog

  1. Add content/en/blog/_index.md

    ---
    cascade:
    isBlog: true
    ---
    Tip

    This helps to change the labels of back navigation; “All Blog Posts”

  2. 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 Markdown
    Tip
    • Update the publishDate accordingly.
    • You can use any folder name or direct file name hello-world.md(If you are not using any cover image)
  3. Add any image of png (or jpg) for content/en/blog/2026_6_1_hello_world/cover.png as the blog post cover image.