Skip to content Skip to footer

Adding extras to improve your How-to Guide

Updating the main configuration file: _config.yml

See the ELIXIR Toolkit theme for more information.

Include navigation tiles for all pages

To add tiles for guide pages that you have created, add the following code to the page you would like the tiles to appear on:

{% include section-navigation-tiles.html type="guides" %}

You can also add the following:

  • type="type_value" : only shows tiles for pages that have the indicated type_value in the page header
  • search=true : enables searching - useful for large tile sets
  • except="index.md" : removes specific tiles

Example - only pages of type "type_value"

{% include section-navigation-tiles.html type="quick_start" %}

Example - only pages of type "guides"

{% include section-navigation-tiles.html type="guides" %}