Configuration

The configuration of your site can be found in config/_default/.

Full Documentation

See https://docs.hugoblox.com/getting-started/customize/

See https://docs.hugoblox.com/getting-started/customize/#menu-items

Links are automatically generated from the structure of your content directory. Simply add a folder to nest a page.

Additional links can be added under the sidebar section of your config/_default/menus.yaml:

 1menu:
 2  sidebar:
 3    - name: "Need help?"
 4      params:
 5        type: separator
 6      weight: 1
 7    - name: "A page"
 8      pageRef: "/page-filename-here"
 9      weight: 2
10    - name: "An external link ↗"
11      url: "https://hugoblox.com"
12      weight: 3

A table of contents is automatically generated from the headings your Markdown file.

It can optionally be disabled by setting toc: false in the front matter of a page:

1---
2title: My Page
3toc: false
4---
docs