No guide on simple page structure?

I just started to learn Hugo and i can not find any guide on how to just create pages. How does the folder structure look like for 3 pages like a home page, about page and gallery page ?

What i came up with was this, but i don’t know if i have done it right:

content
   │    
   │--- about
   │       │--- about.md
   │
   │--- gallery
   │       │--- gallery.md   


layout
   │
index.html      
   │    
   │--- about
   │       │--- about.html
   │
   │--- gallery
   │       │--- gallery.html
content
├── post
│   ├── post-1.md
│   ├── post-2.md
│   └── post-3.md
├── about.md
├── gallery.md
└── _index.md
layouts/
└── _default
    ├── baseof.html
    ├── list.html
    └── single.html

Try starting with this:

And this:

2 Likes

jmooring why did you add post in there ?

And i have watch all his videos, but there was no guide on making pages.

To show how you would group similar content using a content type.

2 Likes

I just want to know how to create 3 pages in a website like home page, about page and gallery page. I don’t need a blog, list or single page. I need them to be custom, so did i do the folder structure right ?