Pages
Add a default page, documentation page, blog post or contributor page. Customize the homepage and 404 page.
On this page
- Add a default page
- Add a documentation page
- Add a blog post
- Add a contributor page
- Customize homepage
- Customize 404 page
..
├── blog/
│ ├── say-hello-to-doks/
│ │ ├── index.md
│ │ └── say-hello-to-doks.png
│ └── _index.md
├── about/
│ └── index.md
├── contributors/
│ ├── henk-verlinde/
│ │ └── _index.md
│ └── _index.md
├── docs/
│ ├── help/
│ │ ├── _index.md
│ │ └── faq.md
│ ├── prologue/
│ │ ├── _index.md
│ │ ├── commands.md
│ │ └── introduction.md
│ └── _index.md
└── _index.md
See also the Hugo docs: Content Organization.
Add a default page
Example
npm run create about/index.md
Add a documentation page
Example
npm run create docs/prologue/introduction.md
Add a blog post
Example
npm run create blog/say-hello-to-doks/index.md
Add a contributor page
Example
npm run create contributors/henk-verlinde/_index.md
Customize homepage
See: Page Layouts.
Customize 404 page
See: Page Layouts.