Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 898 Bytes

README.md

File metadata and controls

37 lines (26 loc) · 898 Bytes

crane-documentation

Documentation for crane

Adding a New Page:

Install Hugo:

This documentation site is generated using Hugo.

To add additional documentation to this site, you must first install Hugo.

Click here for install instructions.

Create a New Page:

Once Hugo is installed, use the following command:

hugo new content/<CATEGORY>/<FILE.md>

Make sure draft is set to false.

Start the Server

To start the Hugo server, run the command:

hugo server

Adding a Page to the Navigation

The navigation menu is located at data/menu/main.yaml. To add an additional page, enter a chosen name under the appropriate section, and the link to that page.

An example of the Overview page:

  - name: Getting Started
    sub:
      - name: Overview
        ref: "/Getting Started/overview"