Skip to content Skip to footer

Guides: How to make sure your How-to Guide is configured properly

The _config.yml and main.yml (located in _data/sidebars/) files determine the structure of your web pages and which items appear in the navigation menu on the left hand side, respectively.

Each new page that is included needs to be added to the main.yml file so that it appears in the left hand navigation menu. An example of this code is provided below for the current How-to Guide:

subitems:
  - title: Start here!
    url: /
  - title: Quick start guide
    url: /docs/quick_start
  - title: Create a new repository
    url: /docs/create_new
  - title: Update your landing page content
    url: /docs/update_index
  - title: Add content pages to your guide
    url: /docs/add_new_pages
  - title: A single page template example
    url: /docs/guide_template
  - title: Update configuration files
    url: /docs/structure
  - title: Make your guide citable
    url: /docs/zenodo
  - title: Useful extra features
    url: /docs/extras
  - title: Contributors list
    url: /contributors
Contributors